Java Code Examples for org.eclipse.core.resources.ResourcesPlugin#FAMILY_MANUAL_BUILD

The following examples show how to use org.eclipse.core.resources.ResourcesPlugin#FAMILY_MANUAL_BUILD . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: ProjectStateChangeListener.java    From n4js with Eclipse Public License 1.0 5 votes vote down vote up
@Override
protected RemoveProjectsJob createRemoveProjectsJob() {
	return new RemoveProjectsJob() {
		@Override
		public boolean belongsTo(Object family) {
			return super.belongsTo(family) || family == ResourcesPlugin.FAMILY_MANUAL_BUILD;
		}
	};
}
 
Example 2
Source File: ProjectStateChangeListener.java    From n4js with Eclipse Public License 1.0 4 votes vote down vote up
@Override
public boolean belongsTo(Object family) {
	return family == ResourcesPlugin.FAMILY_AUTO_BUILD || family == ResourcesPlugin.FAMILY_MANUAL_BUILD;
}
 
Example 3
Source File: LibraryClasspathContainerResolverJob.java    From google-cloud-eclipse with Apache License 2.0 4 votes vote down vote up
@Override
public boolean belongsTo(Object family) {
  // Consider container resolution as part of builds.  Simplifies
  // our tests using {@code ProjectUtils.waitForProjects()}.
  return family == ResourcesPlugin.FAMILY_MANUAL_BUILD;
}
 
Example 4
Source File: OptionsConfigurationBlock.java    From xtext-eclipse with Eclipse Public License 2.0 4 votes vote down vote up
@Override
public boolean belongsTo(Object family) {
	return ResourcesPlugin.FAMILY_MANUAL_BUILD == family;
}
 
Example 5
Source File: ProjectOpenedOrClosedListener.java    From xtext-eclipse with Eclipse Public License 2.0 4 votes vote down vote up
@Override
public boolean belongsTo(Object family) {
	return family == ResourcesPlugin.FAMILY_AUTO_BUILD || family == ResourcesPlugin.FAMILY_MANUAL_BUILD;
}
 
Example 6
Source File: ValidationPreferencePage.java    From APICloud-Studio with GNU General Public License v3.0 4 votes vote down vote up
@Override
public boolean belongsTo(Object family)
{
	return ResourcesPlugin.FAMILY_MANUAL_BUILD == family;
}
 
Example 7
Source File: CoreUtility.java    From Eclipse-Postfix-Code-Completion with Eclipse Public License 1.0 4 votes vote down vote up
@Override
public boolean belongsTo(Object family) {
	return ResourcesPlugin.FAMILY_MANUAL_BUILD == family;
}