/* (non-Javadoc) * @see org.eclipse.wst.jsdt.core.IJsGlobalScopeContainer#getKind() */ public int getKind() { UserLibrary library = getUserLibrary(); if (library != null && library.isSystemLibrary()) { return K_SYSTEM; } return K_APPLICATION; }
/* (non-Javadoc) * @see org.eclipse.wst.jsdt.core.IJsGlobalScopeContainer#getClasspathEntries() */ public IIncludePathEntry[] getIncludepathEntries() { UserLibrary library = getUserLibrary(); if (library != null) { return library.getEntries(); } return new IIncludePathEntry[0]; }