List of usage examples for org.eclipse.jdt.internal.compiler.util SuffixConstants interface-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.ClassFile.java
/** * @see org.eclipse.jdt.core.IClassFile */ @SuppressWarnings({ "rawtypes" }) public class ClassFile extends Openable implements IClassFile, SuffixConstants {
From source file com.codenvy.ide.ext.java.server.internal.core.ClassFileInfo.java
/** * Element info for <code>ClassFile</code> handles. */ @SuppressWarnings({ "rawtypes", "unchecked" }) /* package */ class ClassFileInfo extends OpenableElementInfo implements SuffixConstants {
From source file com.codenvy.ide.ext.java.server.internal.core.CompilationUnit.java
/** * @see org.eclipse.jdt.core.ICompilationUnit */ @SuppressWarnings({ "rawtypes", "unchecked" }) public class CompilationUnit extends Openable implements ICompilationUnit, org.eclipse.jdt.internal.compiler.env.ICompilationUnit, SuffixConstants {
From source file com.codenvy.ide.ext.java.server.internal.core.NameLookup.java
/**
* A <code>NameLookup</code> provides name resolution within a Java project.
* The name lookup facility uses the project's classpath to prioritize the
* order in which package fragments are searched when resolving a name.
* <p/>
* <p>Name lookup only returns a handle when the named element actually
From source file com.codenvy.ide.ext.java.server.internal.core.PackageFragment.java
/** * @see org.eclipse.jdt.core.IPackageFragment */ @SuppressWarnings({ "rawtypes", "unchecked" }) public class PackageFragment extends Openable implements IPackageFragment, SuffixConstants { /**
From source file com.codenvy.ide.ext.java.server.internal.core.search.HierarchyScope.java
/** * Scope limited to the subtype and supertype hierarchy of a given type. */ public class HierarchyScope extends AbstractSearchScope implements SuffixConstants { public IType focusType;
From source file com.codenvy.ide.ext.java.server.internal.core.search.indexing.BinaryIndexer.java
public class BinaryIndexer extends AbstractIndexer implements SuffixConstants { private static final char[] BYTE = "byte".toCharArray(); //$NON-NLS-1$ private static final char[] CHAR = "char".toCharArray(); //$NON-NLS-1$ private static final char[] DOUBLE = "double".toCharArray(); //$NON-NLS-1$ private static final char[] FLOAT = "float".toCharArray(); //$NON-NLS-1$ private static final char[] INT = "int".toCharArray(); //$NON-NLS-1$
From source file com.codenvy.ide.ext.java.server.internal.core.search.indexing.SourceIndexer.java
/**
* A SourceIndexer indexes java files using a java parser. The following items are indexed:
* Declarations of:
* - Classes<br>
* - Interfaces; <br>
* - Methods;<br>
From source file com.codenvy.ide.ext.java.server.internal.core.search.matching.JavaSearchNameEnvironment.java
public class JavaSearchNameEnvironment implements INameEnvironment, SuffixConstants, INameEnvironmentWithProgress { ClasspathLocation[] locations; /* * A map from the fully qualified slash-separated name of the main type (String) to the working copy