Uses of Class
org.eclipse.jdt.core.dom.StructuralPropertyDescriptor

Packages that use StructuralPropertyDescriptor
org.eclipse.jdt.core.dom   
org.eclipse.jdt.core.dom.rewrite   
org.eclipse.jdt.internal.core   
org.eclipse.jdt.internal.core.dom.rewrite   
 

Uses of StructuralPropertyDescriptor in org.eclipse.jdt.core.dom
 

Subclasses of StructuralPropertyDescriptor in org.eclipse.jdt.core.dom
 class ChildListPropertyDescriptor
          Descriptor for a child list property of an AST node.
 class ChildPropertyDescriptor
          Descriptor for a child property of an AST node.
 class SimplePropertyDescriptor
          Descriptor for a simple property of an AST node.
 

Methods in org.eclipse.jdt.core.dom that return StructuralPropertyDescriptor
 StructuralPropertyDescriptor ASTNode.getLocationInParent()
          Returns the location of this node within its parent, or null if this is a root node.
 

Methods in org.eclipse.jdt.core.dom with parameters of type StructuralPropertyDescriptor
 java.lang.Object ASTNode.getStructuralProperty(StructuralPropertyDescriptor property)
          Returns the value of the given structural property for this node.
 void ASTNode.setStructuralProperty(StructuralPropertyDescriptor property, java.lang.Object value)
          Sets the value of the given structural property for this node.
 

Uses of StructuralPropertyDescriptor in org.eclipse.jdt.core.dom.rewrite
 

Methods in org.eclipse.jdt.core.dom.rewrite that return StructuralPropertyDescriptor
 StructuralPropertyDescriptor ListRewrite.getLocationInParent()
          Returns the property of the parent node for which this list rewriter was created.
 

Methods in org.eclipse.jdt.core.dom.rewrite with parameters of type StructuralPropertyDescriptor
 java.lang.Object ASTRewrite.get(ASTNode node, StructuralPropertyDescriptor property)
          Returns the value of the given property as managed by this rewriter.
 void ASTRewrite.set(ASTNode node, StructuralPropertyDescriptor property, java.lang.Object value, TextEditGroup editGroup)
          Sets the given property of the given node.
 

Uses of StructuralPropertyDescriptor in org.eclipse.jdt.internal.core
 

Methods in org.eclipse.jdt.internal.core that return StructuralPropertyDescriptor
protected  StructuralPropertyDescriptor CreateImportOperation.getChildPropertyDescriptor(ASTNode parent)
           
protected  StructuralPropertyDescriptor CreateTypeMemberOperation.getChildPropertyDescriptor(ASTNode parent)
           
protected abstract  StructuralPropertyDescriptor CreateElementInCUOperation.getChildPropertyDescriptor(ASTNode parent)
           
protected  StructuralPropertyDescriptor CreatePackageDeclarationOperation.getChildPropertyDescriptor(ASTNode parent)
           
 

Uses of StructuralPropertyDescriptor in org.eclipse.jdt.internal.core.dom.rewrite
 

Methods in org.eclipse.jdt.internal.core.dom.rewrite that return StructuralPropertyDescriptor
 StructuralPropertyDescriptor RewriteEventStore.PropertyLocation.getProperty()
           
 

Methods in org.eclipse.jdt.internal.core.dom.rewrite with parameters of type StructuralPropertyDescriptor
 void RewriteEventStore.addEvent(ASTNode parent, StructuralPropertyDescriptor childProperty, RewriteEvent event)
           
 RewriteEventStore.CopySourceInfo RewriteEventStore.createRangeCopy(ASTNode parent, StructuralPropertyDescriptor childProperty, ASTNode first, ASTNode last, boolean isMove, ASTNode internalPlaceholder, ASTNode replacingNode, TextEditGroup editGroup)
           
protected  java.lang.Object ASTRewriteFlattener.getAttribute(ASTNode parent, StructuralPropertyDescriptor childProperty)
           
protected  boolean ASTRewriteFlattener.getBooleanAttribute(ASTNode parent, StructuralPropertyDescriptor childProperty)
           
protected  java.util.List ASTRewriteFlattener.getChildList(ASTNode parent, StructuralPropertyDescriptor childProperty)
           
protected  ASTNode ASTRewriteFlattener.getChildNode(ASTNode parent, StructuralPropertyDescriptor childProperty)
           
 RewriteEvent RewriteEventStore.getEvent(ASTNode parent, StructuralPropertyDescriptor property)
           
protected  int ASTRewriteFlattener.getIntAttribute(ASTNode parent, StructuralPropertyDescriptor childProperty)
           
 ListRewriteEvent RewriteEventStore.getListEvent(ASTNode parent, StructuralPropertyDescriptor childProperty, boolean forceCreation)
           
 java.lang.Object RewriteEventStore.getNewValue(ASTNode parent, StructuralPropertyDescriptor property)
           
 NodeRewriteEvent RewriteEventStore.getNodeEvent(ASTNode parent, StructuralPropertyDescriptor childProperty, boolean forceCreation)
           
 java.lang.Object RewriteEventStore.getOriginalValue(ASTNode parent, StructuralPropertyDescriptor property)
           
 java.lang.Object RewriteEventStore.INodePropertyMapper.getOriginalValue(ASTNode parent, StructuralPropertyDescriptor childProperty)
          Returns the node attribute for a given property name.
 RewriteEventStore.CopySourceInfo RewriteEventStore.markAsCopySource(ASTNode parent, StructuralPropertyDescriptor property, ASTNode node, boolean isMove)
           
protected  void ASTRewriteFlattener.visitList(ASTNode parent, StructuralPropertyDescriptor childProperty, java.lang.String separator)
           
protected  void ASTRewriteFlattener.visitList(ASTNode parent, StructuralPropertyDescriptor childProperty, java.lang.String separator, java.lang.String lead, java.lang.String post)
           
 

Constructors in org.eclipse.jdt.internal.core.dom.rewrite with parameters of type StructuralPropertyDescriptor
RewriteEventStore.PropertyLocation(ASTNode parent, StructuralPropertyDescriptor property)