Example usage for org.eclipse.jdt.core IProblemRequestor interface-usage

List of usage examples for org.eclipse.jdt.core IProblemRequestor interface-usage

Introduction

In this page you can find the example usage for org.eclipse.jdt.core IProblemRequestor interface-usage.

Usage

From source file at.bestsolution.fxide.jdt.editor.JDTSourceFileInput.java

@SuppressWarnings("restriction")
public class JDTSourceFileInput implements SourceFileInput, IProblemRequestor {
    private final String url;
    private IFile file;
    private final EventBus eventBus;

From source file jp.sf.amateras.xmleditor.editors.CompilationProblemRequestor.java

/**
 * 
 * @author Naoki Takezoe
 * @since 2.0.3
 */
public class CompilationProblemRequestor implements IProblemRequestor {

From source file org.bonitasoft.studio.contract.ui.property.constraint.edit.editor.CompilationProblemRequestor.java

public class CompilationProblemRequestor implements IProblemRequestor {

    /*
     * (non-Javadoc)
     * @see org.eclipse.jdt.core.IProblemRequestor#acceptProblem(org.eclipse.jdt.core.compiler.IProblem)
     */

From source file org.eclipse.ajdt.internal.ui.editor.CompilationUnitAnnotationModelWrapper.java

/**
 * Wrapper for a CompilationUnitAnnotationModel. Only used for non-.aj files
 * (i.e. usually .java files)
 * Uses AspectJ's eager parser to report errors and ignores errors from the JDT.
 */
public class CompilationUnitAnnotationModelWrapper

From source file org.eclipse.flux.jdt.services.LiveEditProblemRequestor.java

/**
 * Accepts computed compilation problems from JDT and forwards them to the message bus.
 * @author Martin Lippert
 */
public class LiveEditProblemRequestor implements IProblemRequestor {

From source file org.eclipse.jst.jsp.core.internal.java.JSPProblemRequestor.java

class JSPProblemRequestor implements IProblemRequestor {

    private boolean fIsActive = false;

    private boolean fIsRunning = false;

From source file org.eclipse.wst.xml.search.editor.internal.contentassist.CompilationProblemRequestor.java

public class CompilationProblemRequestor implements IProblemRequestor {

    private boolean fIsActive;
    private boolean fIsRunning;
    private List<IProblem> fCollectedProblems;

From source file org.grails.ide.eclipse.editor.gsp.translation.GSPProblemRequestor.java

/**
 * 
 * Make accessible to classes in this package
 * Make {@link GSPTranslation} create .groovy compilation units instead of .java.
 * @author Andrew Eisenberg
 * @created Nov 8, 2009

From source file org.grails.ide.eclipse.ui.contentassist.util.CompilationProblemRequestor.java

/**
 * @author Christian Dupuis
 */
class CompilationProblemRequestor implements IProblemRequestor {

    private boolean fIsActive = false;

From source file org.jboss.tools.vscode.java.internal.handlers.DiagnosticsHandler.java

public class DiagnosticsHandler implements IProblemRequestor {

    private final List<IProblem> problems;
    private final IResource resource;
    private final JavaClientConnection connection;