Example usage for org.eclipse.jface.fieldassist IContentProposal interface-usage

List of usage examples for org.eclipse.jface.fieldassist IContentProposal interface-usage

Introduction

In this page you can find the example usage for org.eclipse.jface.fieldassist IContentProposal interface-usage.

Usage

From source file bndtools.editor.components.MethodContentProposal.java

public class MethodContentProposal implements IContentProposal {

    private final IMethod method;

    public MethodContentProposal(IMethod method) {
        this.method = method;

From source file bndtools.editor.pkgpatterns.PkgPatternProposal.java

public class PkgPatternProposal implements IContentProposal {

    private final IPackageFragment pkg;
    private final boolean wildcard;

    private final int replaceFromPos;

From source file bndtools.utils.ErrorContentProposal.java

class ErrorContentProposal implements IContentProposal {

    private final String message;

    public ErrorContentProposal(String message) {
        this.message = message;

From source file bndtools.utils.JavaContentProposal.java

public class JavaContentProposal implements IContentProposal {

    private final String packageName;
    private final String typeName;
    private final boolean isInterface;

From source file ch.allon.redskin.internal.ui.custom.ProductProposalProvider.java

class ProductProposal implements IContentProposal {

    private Product product;
    private int strip;

    /**

From source file com.rcpcompany.uibindings.IQuickfixProposal.java

/**
 * <!-- begin-user-doc --> The complete description of a single quick fix. <!-- end-user-doc -->
 * 
 * <p>
 * The following features are supported:
 * <ul>

From source file com.siteview.mde.internal.ui.editor.contentassist.TypeContentProposal.java

public class TypeContentProposal implements IContentProposal {

    private String fLabel;

    private String fContent;

From source file de.ovgu.featureide.fm.ui.editors.ContentProposal.java

/**
 * Copy of org.eclipse.jface.fieldassist.ContentProposal included in eclipse 3.6
 * 
 * @author Fabian Benduhn
 */

From source file de.quamoco.qm.properties.SpecificationContentProposal.java

/**
 * {@link IContentProposal} to propose measures and factors for specifications
 * of aggregations and evaluations.
 * 
 * @author herrmama
 * @author $Author: lochmann $

From source file fr.imag.adele.cadse.cadseg.path.ElementPath.java

/**
 * The Class ElementPath.
 * 
 * @author <a href="mailto:stephane.chomat@imag.fr">Stephane Chomat</a>
 */
public abstract class ElementPath implements IContentProposal {