Example usage for org.apache.commons.jci.compilers JavaCompilerSettings subclass-usage

List of usage examples for org.apache.commons.jci.compilers JavaCompilerSettings subclass-usage

Introduction

In this page you can find the example usage for org.apache.commons.jci.compilers JavaCompilerSettings subclass-usage.

Usage

From source file org.auroraide.server.jci.compilers.Jsr199JavaCompilerSettings.java

public class Jsr199JavaCompilerSettings extends JavaCompilerSettings {
    final private Map<String, String> defaultEclipseSettings = new HashMap<String, String>();

    public Jsr199JavaCompilerSettings() {
        defaultEclipseSettings.put("-cp", System.getProperty("java.class.path"));
    }

From source file org.auroraide.server.jci.compilers.EclipseJavaCompilerSettings.java

/**
 * Native Eclipse compiler settings
 * 
 * @author tcurdt
 */
public final class EclipseJavaCompilerSettings extends JavaCompilerSettings {