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

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

Introduction

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

Usage

From source file com.codenvy.ide.ext.java.server.internal.core.BinaryType.java

/**
 * Parent is an IClassFile.
 *
 * @see org.eclipse.jdt.core.IType
 */

From source file com.codenvy.ide.ext.java.server.internal.core.SourceType.java

/**
 * Handle for a source type. Info object is a SourceTypeElementInfo.
 *
 * Note: Parent is either an IClassFile, an ICompilationUnit or an IType.
 *
 * @see org.eclipse.jdt.core.IType

From source file com.drgarbage.asm.render.impl.OutlineElementType.java

/**
 * Outline structure for class, interface or enum elements.
 *
 * @author Sergej Alekseev
 * @version $Revision$
 * $Id$

From source file com.facebook.nuclide.shim.AbstractEclipseJavaElementShim.java

public abstract class AbstractEclipseJavaElementShim extends AbstractEclipseShim<IType> implements IType {

    @Override
    public IAnnotation getAnnotation(String name) {
        return getProxy().getAnnotation(name);
    }

From source file org.eclipse.che.jdt.internal.core.BinaryType.java

/**
 * Parent is an IClassFile.
 *
 * @see org.eclipse.jdt.core.IType
 */

From source file org.eclipse.che.jdt.internal.core.SourceType.java

/**
 * Handle for a source type. Info object is a SourceTypeElementInfo.
 *
 * Note: Parent is either an IClassFile, an ICompilationUnit or an IType.
 *
 * @see org.eclipse.jdt.core.IType

From source file org.eclipse.objectteams.otdt.core.IOTType.java

/**
 * OTM Type with Team/Role support and link to a corresponding JavaModel element
 *
 * @author jwloka
 * @version $Id: IOTType.java 23416 2010-02-03 19:59:31Z stephan $
 * @noimplement This interface is not intended to be implemented by clients.

From source file org.eclipse.objectteams.otdt.core.IPhantomType.java

/**
 * Marker interface to distinguish phantom roles from regular types.
 * A phantom role is a role that is inherited from a super team,
 * and not overridden in the current team, i.e., the current team
 * has no source corresponding to the phantom role.
 *   

From source file org.jboss.tools.cdi.ui.test.testmodel.Type.java

public class Type extends CDIElement implements IType {
    private String qualifiedName;
    private JavaProject project;

    public Type(String qualifiedName) {
        this.qualifiedName = qualifiedName;

From source file potes.cucumberjvm.eclipseplugin.launch.FullyQualifiedNameOnlyType.java

class FullyQualifiedNameOnlyType implements IType {

    private String fqn;

    public FullyQualifiedNameOnlyType(String fqn) {
        this.fqn = fqn;