Uses of Class
org.fife.rsta.ac.java.buildpath.LibraryInfo
-
Packages that use LibraryInfo Package Description org.fife.rsta.ac.java Java code completion classes.org.fife.rsta.ac.java.buildpath Various ways to reference and ingest classes. -
-
Uses of LibraryInfo in org.fife.rsta.ac.java
Fields in org.fife.rsta.ac.java declared as LibraryInfo Modifier and Type Field Description private LibraryInfoJarReader. infoInformation about the jar or directory we're reading classes from.Methods in org.fife.rsta.ac.java that return LibraryInfo Modifier and Type Method Description LibraryInfoJarReader. getLibraryInfo()Returns the physical file on disk.Methods in org.fife.rsta.ac.java that return types with arguments of type LibraryInfo Modifier and Type Method Description java.util.List<LibraryInfo>JarManager. getClassFileSources()Returns the jars on the "build path".java.util.List<LibraryInfo>JavaCompletionProvider. getJars()Returns the jars on the "build path".java.util.List<LibraryInfo>SourceCompletionProvider. getJars()Returns the jars on the "build path".Methods in org.fife.rsta.ac.java with parameters of type LibraryInfo Modifier and Type Method Description booleanJarManager. addClassFileSource(LibraryInfo info)Adds a class file source to read from.voidPackageMapNode. addCompletions(LibraryInfo info, org.fife.ui.autocomplete.CompletionProvider provider, java.lang.String[] pkgNames, java.util.Set<org.fife.ui.autocomplete.Completion> addTo)Gets the completions in this package map that match a given string.voidJavaCompletionProvider. addJar(LibraryInfo info)Adds a jar to the "build path".voidSourceCompletionProvider. addJar(LibraryInfo info)Adds a jar to read from.ClassFilePackageMapNode. getClassEntry(LibraryInfo info, java.lang.String[] items)Returns a class entry.voidPackageMapNode. getClassesInPackage(LibraryInfo info, java.util.List<ClassFile> addTo, java.lang.String[] pkgs, boolean inPkg)Returns the classes in a package.(package private) voidPackageMapNode. getClassesWithNamesStartingWith(LibraryInfo info, java.lang.String prefix, java.lang.String currentPkg, java.util.List<ClassFile> addTo)Method used to recursively scan our package map for classes whose names start with a given prefix, ignoring case.booleanJarManager. removeClassFileSource(LibraryInfo toRemove)Removes a class file source from the "build path".Constructors in org.fife.rsta.ac.java with parameters of type LibraryInfo Constructor Description JarReader(LibraryInfo info)Constructor. -
Uses of LibraryInfo in org.fife.rsta.ac.java.buildpath
Subclasses of LibraryInfo in org.fife.rsta.ac.java.buildpath Modifier and Type Class Description classClasspathLibraryInfoInformation about specific classes on the current application's classpath to add to the "build path." This type of container is useful if your application ships with specific classes you want included in code completion, but you don't want to add the entire jar to the build path.classDirLibraryInfoInformation about a folder containing a set of classes to add to the "build path." This type of library info could be used, for example, to add sibling projects in a workspace, not yet built into jars, to another project's build path.classJarLibraryInfoInformation about a jar of classes to add to the "build path".Methods in org.fife.rsta.ac.java.buildpath that return LibraryInfo Modifier and Type Method Description static LibraryInfoLibraryInfo. getJreJarInfo(java.io.File jreHome)Returns information on the "main" jar for a JRE.static LibraryInfoLibraryInfo. getMainJreJarInfo()Returns information on the JRE running this application.Methods in org.fife.rsta.ac.java.buildpath with parameters of type LibraryInfo Modifier and Type Method Description intClasspathLibraryInfo. compareTo(LibraryInfo info)intDirLibraryInfo. compareTo(LibraryInfo info)Compares thisLibraryInfoto another one.intJarLibraryInfo. compareTo(LibraryInfo info)Compares thisLibraryInfoto another one.
-