Java Code Examples for org.eclipse.jdt.core.IClasspathContainer#K_APPLICATION
The following examples show how to use
org.eclipse.jdt.core.IClasspathContainer#K_APPLICATION .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: LibraryClasspathContainer.java From google-cloud-eclipse with Apache License 2.0 | 4 votes |
@Override public int getKind() { return IClasspathContainer.K_APPLICATION; }
Example 2
Source File: XtendClasspathContainer.java From xtext-xtend with Eclipse Public License 2.0 | 4 votes |
/** * {@inheritDoc} */ @Override public int getKind() { return IClasspathContainer.K_APPLICATION; }
Example 3
Source File: SdkClasspathContainer.java From gwt-eclipse-plugin with Eclipse Public License 1.0 | 4 votes |
public int getKind() { return IClasspathContainer.K_APPLICATION; }
Example 4
Source File: RuntimeLibraryContainer.java From txtUML with Eclipse Public License 1.0 | 4 votes |
@Override public int getKind() { return IClasspathContainer.K_APPLICATION; }