Uses of Interface
jdk.nashorn.api.tree.PropertyTree

Packages that use PropertyTree 
Package Description
jdk.nashorn.api.tree
Nashorn parser API provides interfaces to represent ECMAScript source code as abstract syntax trees (AST) and Parser to parse ECMAScript source scripts.
  • Uses of PropertyTree in jdk.nashorn.api.tree

    Methods in jdk.nashorn.api.tree that return PropertyTree 
    Modifier and Type Method Description
    PropertyTree ClassDeclarationTree.getConstructor()
    Deprecated, for removal: This API element is subject to removal in a future version.
    Get the constructor method definition.
    PropertyTree ClassExpressionTree.getConstructor()
    Deprecated, for removal: This API element is subject to removal in a future version.
    Get the constructor method definition.
    Methods in jdk.nashorn.api.tree that return types with arguments of type PropertyTree 
    Modifier and Type Method Description
    List<? extends PropertyTree> ClassDeclarationTree.getClassElements()
    Deprecated, for removal: This API element is subject to removal in a future version.
    Get other property definitions except for the constructor.
    List<? extends PropertyTree> ClassExpressionTree.getClassElements()
    Deprecated, for removal: This API element is subject to removal in a future version.
    Get other property definitions except for the constructor.
    List<? extends PropertyTree> ObjectLiteralTree.getProperties()
    Deprecated, for removal: This API element is subject to removal in a future version.
    Returns the list of properties of this object literal.
    Methods in jdk.nashorn.api.tree with parameters of type PropertyTree 
    Modifier and Type Method Description
    R TreeVisitor.visitProperty​(PropertyTree node, P p)
    Deprecated, for removal: This API element is subject to removal in a future version.
    Visit a property of an object literal expression tree.