Extension SDK 9.0.5

Uses of Interface
oracle.jdeveloper.jot.JotBlockElement

Packages that use JotBlockElement
oracle.jdeveloper.jot Provides classes and interfaces for JOT (the Java Object Toolkit). 
oracle.jdeveloper.junit The oracle.jdeveloper.junit package contains classes that can be used to generate JUnit classes into a project. 
 

Uses of JotBlockElement in oracle.jdeveloper.jot
 

Subinterfaces of JotBlockElement in oracle.jdeveloper.jot
 interface JotBlockStatement
          A JotBlockStatement represents a block statement.
 interface JotBreak
          A JotBreak represents a break statement.
 interface JotCase
          A JotCase represents a case or default clause inside of a switch statement.
 interface JotConditional
          A JotConditional represents a conditional statement.
 interface JotContinue
          A JotContinue represents a continue statement.
 interface JotDo
          A JotDo represents a do statement.
 interface JotElse
          A JotElse represents the else clause of an if statement.
 interface JotExpressionStatement
          A JotExpressionStatement represents an expression statement.
 interface JotFor
          A JotFor represents a for statement.
 interface JotHasChildStatement
          The JotHasChildStatement interface describes statements that can contain a single sub-statement.
 interface JotIf
          The JotIf interface represents an if statement.
 interface JotLocalClass
          The JotLocalClass interface corresponds to a local class declared within a code block.
 interface JotLocalVariableDeclaration
          The JotLocalVariableDeclaration represents a local variable declaration.
 interface JotReturn
          The JotReturn interface represents a return statement.
 interface JotStatement
          The JotStatement interface represents a statement in a Java source file.
 interface JotSwitch
          The JotSwitch interface represents a switch statement.
 interface JotSynchronized
          The JotSynchronized interface represents a synchronized statement.
 interface JotThrow
          The JotThrow interface represents a throw statement.
 interface JotTry
          The JotTry interface represents a try statement.
 interface JotWhile
          The JotWhile represents a while statement.
 

Methods in oracle.jdeveloper.jot that return JotBlockElement
 JotBlockElement[] JotCodeBlock.getBlockElements()
          Retrieves all the block elements that are children of this block.
 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.
 

Methods in oracle.jdeveloper.jot with parameters of type JotBlockElement
 int JotCodeBlock.getComparableLocation(JotBlockElement element)
          Retrieves the position of an element in the list of elements.
 JotBlockStatement JotCodeBlock.addBlock(JotBlockElement marker, boolean before)
          Adds a new block statement to this code block.
 JotBreak JotCodeBlock.addBreak(JotBlockElement marker, boolean before)
          Adds a new break statement to this code block.
 JotContinue JotCodeBlock.addContinue(JotBlockElement marker, boolean before)
          Adds a new continue statement to this code block.
 JotReturn JotCodeBlock.addReturn(JotBlockElement marker, boolean before, java.lang.String exp)
          Adds a new return statement to this code block.
 JotThrow JotCodeBlock.addThrow(JotBlockElement marker, boolean before, java.lang.String exp)
          Adds a new throw statement to this code block.
 JotDo JotCodeBlock.addDo(JotBlockElement marker, boolean before, java.lang.String condition)
          Adds a new do statement to this code block.
 JotWhile JotCodeBlock.addWhile(JotBlockElement marker, boolean before, java.lang.String condition)
          Adds a new while statement to this code block.
 JotIf JotCodeBlock.addIf(JotBlockElement marker, boolean before, java.lang.String exp)
          Adds a new if statement to this code block.
 JotFor JotCodeBlock.addFor(JotBlockElement marker, boolean before)
          Adds a new for statement to this code block.
 JotSwitch JotCodeBlock.addSwitch(JotBlockElement marker, boolean before, java.lang.String exp)
          Adds a new switch statement to this code block.
 JotSynchronized JotCodeBlock.addSynchronized(JotBlockElement marker, boolean before, java.lang.String exp)
          Adds a new synchronized statement to this code block.
 JotExpressionStatement JotCodeBlock.addExpressionStatement(JotBlockElement marker, boolean before, java.lang.String exp)
          Adds a new expression statement to this code block.
 JotExpressionStatement JotCodeBlock.addExpressionStatement(JotBlockElement marker, boolean before, JotStatementExpression exp)
          Adds a new expression statement to this code block based on a specific expression.
 JotTry JotCodeBlock.addTry(JotBlockElement marker, boolean before)
          Adds a new try statement to this code block.
 JotCase JotCodeBlock.addCase(JotBlockElement marker, boolean before, java.lang.String label)
          Adds a new case statement to this code block.
 JotLocalVariableDeclaration JotCodeBlock.addVariableDeclaration(JotBlockElement marker, boolean before, java.lang.String vType)
          Adds a new variable declaration to this block.
 JotLocalVariable JotCodeBlock.addVariable(JotBlockElement marker, boolean before, java.lang.String vType, java.lang.String vName)
          Creates a new variable declaration in this block and adds a variable to it.
 JotLocalClass JotCodeBlock.addLocalClass(JotBlockElement marker, boolean before, java.lang.String cName)
          Adds a new local class declaration to this block.
 JotBlockElement JotCodeBlock.addBlockElement(JotBlockElement marker, boolean before, 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.
 void JotCodeBlock.removeBlockElement(JotBlockElement element)
          Removes a block element from this block.
 void JotCodeBlock.addBlankLine(JotBlockElement marker, boolean before)
          Adds a blank line to the code block.
 void JotCodeBlock.addComment(JotBlockElement marker, boolean before, JotComment comment)
          Adds a comment to this file.
 JotComment JotCodeBlock.getComment(JotBlockElement marker, boolean before)
          Retrieves the nearest comment to a member.
 

Uses of JotBlockElement in oracle.jdeveloper.junit
 

Methods in oracle.jdeveloper.junit that return JotBlockElement
 JotBlockElement TestCaseContainer.getSuiteMethodInsertionPoint()
          Returns the insertion point to be used as a marker.
 


Extension SDK

 

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