All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.loicoudot.java4cpp.ModelExecutor Maven / Gradle / Ivy

package com.github.loicoudot.java4cpp;


class ModelExecutor implements Runnable {
    private final Context context;
    private final Java4CppType type;

    public ModelExecutor(Context context) throws InterruptedException {
        this.context = context;
        type = context.getClassesToDo().take();
    }

    @Override
    public void run() {
        context.analyzeClassModel(type);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy