List of usage examples for org.eclipse.jdt.core.compiler CompilationParticipant subclass-usage
From source file at.bestsolution.efxclipse.tooling.fxml.compile.FxmlAnnotationCompilationParticipant.java
/**
* A compilation participant which checks @FXML annotated methods in JavaFX
* Controller classes. - Method name must be UNIQUE - Method must have 0 or
* exactly 1 argument which must be javafx.event.Event
*
* @author martin.bluehweis@bestsolution.at
From source file at.bestsolution.efxclipse.tooling.model.internal.ModelUpdater.java
public class ModelUpdater extends CompilationParticipant { public ModelUpdater() { // TODO Auto-generated constructor stub }
From source file ca.ecliptical.pde.internal.ds.DSAnnotationCompilationParticipant.java
@SuppressWarnings("restriction") public class DSAnnotationCompilationParticipant extends CompilationParticipant { private static final String DS_BUILDER = "org.eclipse.pde.ds.core.builder"; //$NON-NLS-1$ private static final String DS_MANIFEST_KEY = "Service-Component"; //$NON-NLS-1$
From source file com.carrotgarden.eclipse.fileinstall.Builder.java
/** * Java build listener. */ public class Builder extends CompilationParticipant { @Override
From source file com.google.appengine.eclipse.core.validators.java.JavaCompilationParticipant.java
/** * Integrates into the JDT reconcile and build process to flag GAE-specific * errors and find Java references inside JSNI blocks. */ @SuppressWarnings("restriction") public class JavaCompilationParticipant extends CompilationParticipant {
From source file com.google.cloud.tools.eclipse.appengine.validation.JreWhitelistChecker.java
public class JreWhitelistChecker extends CompilationParticipant { @Override public boolean isActive(IJavaProject project) { return false; }
From source file com.google.cloud.tools.eclipse.appengine.whitelist.JreWhitelistChecker.java
public class JreWhitelistChecker extends CompilationParticipant { @Override public boolean isActive(IJavaProject project) { return false; }
From source file com.google.gdt.eclipse.appengine.rpc.validators.JavaCompilationParticipant.java
/** * Integrates into the JDT reconcile and build process to flag Request Factory * specific errors. */ public class JavaCompilationParticipant extends CompilationParticipant {
From source file com.google.gdt.eclipse.designer.builders.participant.AbstractCompilationParticipant.java
/**
* Abstract compilation participant for creating problem markers. We use it in GWT for checking that
* all imported/used classes are in inherited modules.
*
* @author scheglov_ke
* @coverage gwt.compilation.participant
From source file com.google.gdt.eclipse.suite.update.builders.UpdateTriggerCompilationParticipant.java
/** * A compilation participant that is used to trigger an update check of the GDT Plugin's feature * whenever a Java build is triggered on a project, and the project has either the GWT or GAE * natures (or both). */ public class UpdateTriggerCompilationParticipant extends CompilationParticipant {