Interface NamedExpr

  • All Superinterfaces:
    Node
    All Known Implementing Classes:
    NamedExpr.Impl

    public interface NamedExpr
    extends Node
    • Method Detail

      • getName

        Name getName()
      • setName

        void setName​(Name name)
      • getExpr

        Expr getExpr()
      • setExpr

        void setExpr​(Expr expr)
      • getOtherName

        Name getOtherName()
      • setOtherName

        void setOtherName​(Name otherName)
      • getOtherMany

        boolean getOtherMany()
      • setOtherMany

        void setOtherMany​(boolean otherMany)
      • accept

        default <P,​R> R accept​(Node.Visitor<P,​R> visitor,
                                     P par)
        Specified by:
        accept in interface Node