1 11 package org.eclipse.pde.internal.core.isite; 12 13 import org.eclipse.core.runtime.*; 14 17 public interface ISiteBuild extends ISiteBuildObject { 18 String P_PLUGIN_LOCATION = "plugin-location"; String P_FEATURE_LOCATION = "feature-location"; String P_SHOW_CONSOLE = "show-console"; String P_AUTOBUILD = "autobuild"; String P_SCRUB_OUTPUT = "scrub-output"; 24 IPath getPluginLocation(); 25 IPath getFeatureLocation(); 26 boolean getScrubOutput(); 27 boolean isAutobuild(); 28 void setAutobuild(boolean value) throws CoreException; 29 void setScrubOutput(boolean value) throws CoreException; 30 boolean getShowConsole(); 31 void setShowConsole(boolean value) throws CoreException; 32 33 void addFeatures(ISiteBuildFeature [] features) throws CoreException; 34 void removeFeatures(ISiteBuildFeature [] features) throws CoreException; 35 ISiteBuildFeature [] getFeatures(); 36 void resetReferences(); 37 } 38 | Popular Tags |