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

editor.settings.CompilerSettingsParameters Maven / Gradle / Ivy

There is a newer version: 1.18.1
Show newest version
package editor.settings;

/**
 */
public class CompilerSettingsParameters extends AbstractSettingsParameters
{
  private boolean _sourceBased;
  private String _ouputPath;


  public CompilerSettingsParameters()
  {
  }

  public boolean isSourceBased()
  {
    return _sourceBased;
  }
  public void setSourceBased( boolean sourceBased )
  {
    _sourceBased = sourceBased;
  }

  public String getOutputPath()
  {
    return _ouputPath;
  }
  public void setOuputPath( String outputPath )
  {
    _ouputPath = outputPath;
  }

  @Override
  public void copy( CompilerSettingsParameters to )
  {
    to.setSourceBased( isSourceBased() );
    to.setOuputPath( getOutputPath() );
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy