Oracle Fusion Middleware Java API Reference for Oracle Extension SDK
11g Release 2 (11.1.2.0.0)

E17493-01

Uses of Interface
javax.ide.model.java.source.tree.BlockT

Packages that use BlockT
javax.ide.model.java.source Various interfaces for use with Tree objects. 
javax.ide.model.java.source.tree The Java AST. 
 

Uses of BlockT in javax.ide.model.java.source
 

Methods in javax.ide.model.java.source that return BlockT
 BlockT TreeFactory.createBlock()
          Creates an empty code block.
 BlockT TreeFactory.createBlock(BlockElementT element)
          Creates an empty code block.
abstract  BlockT TreeFactory.createBlock(BlockElementT[] elements)
          Creates a code block.
abstract  BlockT TreeFactory.textToBlock(java.lang.String text)
          Attempts to create a block with the given text.
 

Methods in javax.ide.model.java.source with parameters of type BlockT
abstract  BlockStatementT TreeFactory.createBlockStatement(BlockT block)
          Creates a block statement.
abstract  ClassInitializerT TreeFactory.createClassInitializer(int modifiers, BlockT block)
          Creates a class initializer.
 MethodT TreeFactory.createConstructor(FormalParameterListT parameters, ThrowsT throwsClause, BlockT block)
          Creates a constructor declaration
abstract  MethodT TreeFactory.createConstructor(TypeParameterT[] typeParameters, FormalParameterListT parameters, ThrowsT throwsClause, BlockT block)
          Creates a constructor declaration
 ClassInitializerT TreeFactory.createInstanceInitializer(BlockT block)
          Creates an instance class initializer.
abstract  MethodT TreeFactory.createMethod(TypeParameterT[] typeParameters, TypeReferenceT returnType, java.lang.String name, FormalParameterListT parameters, ThrowsT throwsClause, BlockT block)
          Creates a method declaration.
 MethodT TreeFactory.createMethod(TypeReferenceT returnType, java.lang.String name, FormalParameterListT parameters, ThrowsT throwsClause, BlockT block)
          Creates a method declaration.
 ClassInitializerT TreeFactory.createStaticInitializer(BlockT block)
          Creates a static class initializer.
 void TreeVisitor.visitBlock(BlockT tree)
          Visits a BlockT.
 

Uses of BlockT in javax.ide.model.java.source.tree
 

Methods in javax.ide.model.java.source.tree that return BlockT
 BlockT MemberT.getBlock()
          Gets the declared code block, null if none.
 BlockT BlockStatementT.getBlock()
          Gets the declared code block, null if none.
 BlockT LocalVariableT.getOwningBlock()
          Gets the owning block.
 

Methods in javax.ide.model.java.source.tree with parameters of type BlockT
 void MemberT.setBlock(BlockT block)
          Attempts to set the code block associated with this element.
 void BlockStatementT.setBlock(BlockT block)
          Attempts to set the code block associated with this element.
 


Oracle Fusion Middleware Java API Reference for Oracle Extension SDK
11g Release 2 (11.1.2.0.0)

E17493-01

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