Extension SDK 9.0.5

Uses of Class
oracle.jdeveloper.jot.JotException

Packages that use JotException
oracle.jdeveloper.jot Provides classes and interfaces for JOT (the Java Object Toolkit). 
 

Uses of JotException in oracle.jdeveloper.jot
 

Methods in oracle.jdeveloper.jot that throw JotException
 boolean JotNode.isStructureKnown()
          Determines whether or not the contents of this element are knowable.
 JotLocalVariable JotLocalVariableDeclaration.addLocalVariable(JotLocalVariable marker, boolean before, java.lang.String varName)
          Adds a new local variable to this declaration.
 JotLocalVariable JotLocalVariableDeclaration.addLocalVariable(java.lang.String varName)
          Adds a new local variable to the end of this declaration.
 void JotLocalVariableDeclaration.removeLocalVariable(JotLocalVariable var)
          Removes a local variable from this declaration.
 void JotAnonymousClass.setName(java.lang.String name)
          Sets the internal name for this class.
 JotStatement JotHasChildStatement.addStatement(java.lang.String text)
          Adds a new statement as the sub-statement.
 void JotParameter.setType(java.lang.String newType)
          Sets the base type of this parameter.
 void JotVariableDeclaration.setType(java.lang.String newType)
          Sets the base type of this variable declaration.
 JotVariable JotVariableDeclaration.addVariable(JotVariable marker, boolean before, java.lang.String varName)
          Adds a new variable to this declaration.
 JotVariable JotVariableDeclaration.addVariable(java.lang.String varName)
          Adds a new variable to the end of this declaration.
 void JotVariableDeclaration.removeVariable(JotVariable var)
          Removes a variable from this declaration.
 JotBlockElement JotCodeBlock.addBlockElement(JotBlockElement marker, boolean before, java.lang.String text)
          Adds an arbitrary block element to this code block.
 JotBlockElement JotCodeBlock.addBlockElement(java.lang.String text)
          Adds an arbitrary block element to this code block.
 JotBlockElement[] JotCodeBlock.addBlockElements(JotBlockElement marker, boolean before, java.lang.String text)
          Adds arbitrary block elements to this code block.
 JotBlockElement[] JotCodeBlock.addBlockElements(java.lang.String text)
          Adds arbitrary block elements to this code block.
 void JotCodeBlock.setText(java.lang.String text)
          Sets the text of this code block.
 void JotVariable.setInitializer(java.lang.String init)
          Sets the initialization expression of this variable.
 void JotModel.refreshPrecachedData(JotWorkArea[] workAreas, boolean foreground)
          Causes the updating of all precached data for archives present in each JotWorkArea, when this task determines that there is out of date data present in a cache.
 void JotModel.refreshAllPrecachedData(boolean foreground)
          Performs the same work as refreshPrecachedData(JotWorkArea[], boolean) with all known work areas as the scope.
 JotElement[] JotManipulations.findAllReferences(JotType type, java.lang.String memberText, java.lang.String[] packageScope)
          Finds all the references to the specified class and member in the search scope.
 JotFile[] JotManipulations.findAllFileReferences(JotType type, java.lang.String memberText, java.lang.String[] packageScope)
          Finds all the files containing references to the specified class and member in the search scope.
 JotElement[] JotManipulations.findAllMethodReferences(JotType type, JotMethod method, java.lang.String[] packageScope)
          Finds all the references to the specified class and member in the search scope.
 JotElement[] JotManipulations.findAllFieldReferences(JotType type, JotField field, java.lang.String[] packageScope)
          Finds all the references to the specified class and member in the search scope.
 void JotManipulations.copy(JotElement element, JotElement[] parents, JotElement[] siblings, boolean[] befores, java.lang.String[] newNames)
          Copies the specified JotElement to all the specified parents.
 void JotManipulations.move(JotElement element, JotElement parent, JotElement sibling, boolean before, java.lang.String newName)
          Moves the specified element to a new parent.
 void JotMethod.setReturnType(java.lang.String typeName)
          Sets the return type of this method.
 JotParameter JotMethod.addParameter(java.lang.String pType, java.lang.String pName)
          Adds a new parameter to this method.
 JotParameter JotMethod.addParameter(int idx, java.lang.String pType, java.lang.String pName)
          Adds a new parameter to this method.
 void JotMethod.removeParameter(JotParameter param)
          Removes an existing parameter from this method.
 void JotMethod.addExceptionType(java.lang.String typeName)
          Adds a new Exception type to this method.
 void JotMethod.addExceptionType(int idx, java.lang.String typeName)
          Adds a new Exception type to this method at a specific location within the throws clause.
 void JotMethod.removeExceptionType(java.lang.String typeName)
          Removes an exception type from the throws clause of this method.
 void JotNameable.setName(java.lang.String name)
          Sets the name of this member.
 void JotHasModifiers.setModifiers(int mods)
          Sets the Java modifiers for this member, encoded as a mask.
 void JotClass.setIsInterface(boolean isIface)
          Marks whether this JotClass instance represents an interface.
 void JotClass.setSuperclass(java.lang.String sCls)
          Sets the superclass type for this class.
 void JotClass.addInterface(java.lang.String iface)
          Adds a superinterface to this instance's type declaration.
 void JotClass.removeInterface(JotType iface)
          Removes a superinterface from this type declaration.
 JotField JotClass.addField(JotMember member, boolean before, java.lang.String type, java.lang.String name)
          Adds a new field to this type.
 void JotClass.removeField(JotField fld)
          Removes an existing field from this type.
 JotMethod JotClass.addMethod(JotMember member, boolean before, java.lang.String returnType, java.lang.String name)
          Adds a new method to this type.
 void JotClass.removeMethod(JotMethod method)
          Removes an existing method from this type.
 JotConstructor JotClass.addConstructor(JotMember member, boolean before)
          Adds a new constructor to this type.
 void JotClass.removeConstructor(JotConstructor ctor)
          Removes an existing constructor from this type.
 JotClassInitializer JotClass.addInitializer(JotMember member, boolean before)
          Adds a new initializer to this type.
 void JotClass.removeInitializer(JotClassInitializer init)
          Removes an existing initializer from this type.
 JotInnerClass JotClass.addInnerClass(JotMember member, boolean before, java.lang.String clsName)
          Adds a new member class to this class or interface.
 void JotClass.removeInnerClass(JotClass cls)
          Removes a member class from this class or interface.
 boolean JotElement.isStructureKnown()
          Determines whether or not the contents of this element are knowable.
 void JotFile.setPackage(java.lang.String pkgName)
          Sets the package name in this file's JotPackageStatement.
 JotClass JotFile.addClass(java.lang.String name)
          Adds a new class declaration to this file.
 JotClass JotFile.addClass(int index, java.lang.String name)
          Adds a new class declaration to this file at a specific location.
 void JotFile.removeClass(JotClass cls)
          Removes a class from this file.
 JotImport JotFile.addImport(java.lang.String name)
          Adds a new import statement to this file.
 void JotFile.removeImport(JotImport imp)
          Removes an existing import from this file.
 void JotFile.commitFile()
          Commits any pending changes to the JOT model.
 void JotFile.commitFile(java.lang.Object origin)
          Commits any pending changes to the JOT model.
 void JotFile.commitFile(java.lang.String undoText)
          Commits any pending changes to the JOT model.
 void JotFile.commitFile(java.lang.Object origin, java.lang.String undoText)
          Commits any pending changes to the JOT model.
 void JotFile.commitFile(boolean isUndoable)
          Deprecated. use commitFile() or commitFile(String);
 void JotFile.commitFile(boolean isUndoable, java.lang.Object origin)
          Deprecated. use commitFile(Object) or commitFile(Object, String)
 void JotFile.commitFile(boolean isUndoable, java.lang.Object origin, java.lang.String undoText)
          Deprecated. use commitFile(Object) or commitFile(Object, String)
 void JotFile.rollbackFile()
          Rolls back any pending changes to the JOT model.
 


Extension SDK

 

Copyright © 1997, 2004, Oracle. All rights reserved.