Example usage for org.eclipse.jdt.core.compiler CategorizedProblem subclass-usage

List of usage examples for org.eclipse.jdt.core.compiler CategorizedProblem subclass-usage

Introduction

In this page you can find the example usage for org.eclipse.jdt.core.compiler CategorizedProblem subclass-usage.

Usage

From source file ca.ecliptical.pde.internal.ds.DSAnnotationProblem.java

public class DSAnnotationProblem extends CategorizedProblem {

    private final boolean error;

    private final String message;

From source file com.google.gdt.eclipse.core.markers.GdtJavaProblem.java

/**
 * Defines a custom Java problem. Our problems reuse the standard Java problem
 * marker type, so we can transparently integrate with the Java Editor. For
 * example, the JDT editor will only allow inline quick fixes on Java problems,
 * and will not work on any other types of problems.
 * 

From source file com.google.gwt.dev.javac.SerializableCategorizedProblem.java

/**
 * Provides a way to serialize a {@link CategorizedProblem}.
 */
public class SerializableCategorizedProblem extends CategorizedProblem implements Serializable {
    private final int categoryId;
    private final String markerType;

From source file net.atos.jdt.ast.validation.engine.ASTValidationProblem.java

/**
 * Class that identifies a problem raised by the AST validation
 * 
 * @author mvanbesien
 * @since 1.1
 * 

From source file org.eclipse.pde.ds.internal.annotations.DSAnnotationProblem.java

public class DSAnnotationProblem extends CategorizedProblem {

    private final boolean error;

    private final String message;

From source file org.eiichiro.gig.eclipse.core.compiler.GigJavaProblem.java

/**
 * @author <a href="mailto:mail@eiichiro.org">Eiichiro Uchiumi</a>
 */
public class GigJavaProblem extends CategorizedProblem {

    private static final String MARKER_ID = "org.eiichiro.gig.eclipse.core.marker";

From source file org.jboss.tools.common.validation.java.TempJavaProblem.java

/**
 * @author Victor V. Rubezhny
 */
public class TempJavaProblem extends CategorizedProblem {
    public static final String MARKER_TYPE = "org.jboss.tools.common.validation.temp"; //$NON-NLS-1$

From source file org.springframework.ide.eclipse.data.jdt.core.InvalidDerivedQueryProblem.java

/**
 * {@link CategorizedProblem} to express an invalid Spring Data query method.
 * 
 * @author Oliver Gierke
 * @deprecated replaced with {@link InvalidDerivedQueryRule}.
 */

From source file org.springframework.ide.eclipse.quickfix.jdt.MissingPathVariableWarning.java

/**
 * Marker problem for missing @PathVariable
 * 
 * @author Terry Denney
 * @since 2.6
 */