Package protobuf.compiler

Source Code of protobuf.compiler.PbCompilerSettingsFactory

package protobuf.compiler;

import com.intellij.compiler.CompilerSettingsFactory;
import com.intellij.openapi.options.Configurable;
import com.intellij.openapi.project.Project;
import protobuf.settings.application.PbCompilerApplicationSettings;
import protobuf.settings.application.PbCompilerConfigurable;

/**
* @author Nikolay Matveev
* Date: Apr 5, 2010
*/
public class PbCompilerSettingsFactory implements CompilerSettingsFactory {
    @Override
    public Configurable create(Project project) {
        return new PbCompilerConfigurable(PbCompilerApplicationSettings.getInstance(),project);
    }
}
TOP

Related Classes of protobuf.compiler.PbCompilerSettingsFactory

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.