Uses of Class
edu.rice.cs.drjava.model.definitions.ClassNameNotFoundException

Packages that use ClassNameNotFoundException
edu.rice.cs.drjava.model The model package is responsible for the majority of the logic and state in DrJava. 
edu.rice.cs.drjava.model.definitions Provides the data model for storing Java source code. 
 

Uses of ClassNameNotFoundException in edu.rice.cs.drjava.model
 

Methods in edu.rice.cs.drjava.model that throw ClassNameNotFoundException
 String OpenDefinitionsDocument.getFirstTopLevelClassName()
          Returns the name of the top level class, if any.
 String DefaultGlobalModel.DefinitionsDocumentHandler.getFirstTopLevelClassName()
          Returns the name of the top level class, if any.
 

Uses of ClassNameNotFoundException in edu.rice.cs.drjava.model.definitions
 

Methods in edu.rice.cs.drjava.model.definitions that throw ClassNameNotFoundException
 void DefinitionsDocumentTest.testTopLevelClassName()
          Test class name-finding on document
 void DefinitionsDocumentTest.testTopLevelInterfaceName()
          Test interface name-finding on document
 void DefinitionsDocumentTest.testTopLevelClassNameWComments()
          Test class name-finding on document
 void DefinitionsDocumentTest.testTopLevelClassNameWithClassloaderImport()
          Tests that the word class is not recognized if it is not followed by whitespace.
 void DefinitionsDocumentTest.testTopLevelClassNameMisleading()
          Test class name-finding on document
 void DefinitionsDocumentTest.testTopLevelInterfaceNameMisleading()
          Test class name-finding on document
 void DefinitionsDocumentTest.testTopLevelInterfaceNameBeforeClassName()
          Test class name-finding on document
 void DefinitionsDocumentTest.testTopLevelClassNameWithDelimiters()
          Test class name-finding on document
 void DefinitionsDocumentTest.testTopLevelEnclosingClassName()
          Tests that the name of a top level enclosing class can be found.
 void DefinitionsDocumentTest.testQualifiedClassNameWithPackage()
          Tests that the correct qualified class name is returned with a package.
 void DefinitionsDocumentTest.testQualifiedClassNameWithoutPackage()
          Tests that the correct qualified class name is returned without a package.
 String DefinitionsDocument.getQualifiedClassName()
          Gets the package and class name of this OpenDefinitionsDocument
 String DefinitionsDocument.getQualifiedClassName(int pos)
          Gets fully qualified class name of the top level class enclosing the given position.
 String DefinitionsDocument.getEnclosingTopLevelClassName(int pos)
          Returns the name of the class or interface enclosing the caret position at the top level.
 String DefinitionsDocument.getFirstTopLevelClassName()
          Gets the name of the top level class in this source file.
 String DefinitionsDocument.getNextTopLevelClassName(int startPos, int endPos)