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

io.protostuff.generator.dummy.DummyGenerator Maven / Gradle / Ivy

There is a newer version: 3.1.40
Show newest version
package io.protostuff.generator.dummy;

import io.protostuff.compiler.model.Module;
import io.protostuff.generator.ProtoCompiler;

/**
 * Dummy generator that does nothing.
 *
 * @author Kostiantyn Shchepanovskyi
 */
public class DummyGenerator implements ProtoCompiler {

    private Module lastCompiledModule = null;

    @Override
    public void compile(Module module) {
        lastCompiledModule = module;
    }

    public Module getLastCompiledModule() {
        return lastCompiledModule;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy