Class VerilogShowCancelled

    • Constructor Detail

      • VerilogShowCancelled

        public VerilogShowCancelled​(VerilogNode parent)
        Creates a show-cancelled construct.
        Parameters:
        parent - the parent node.
      • VerilogShowCancelled

        public VerilogShowCancelled​(VerilogShowCancelled other,
                                    VerilogNode parent)
        Creates a copy of the show-cancelled construct.
        Parameters:
        other - the show-cancelled construct to be copied.
        parent - the parent node.
    • Method Detail

      • getType

        public VerilogShowCancelled.Type getType()
        Returns the show-cancelled construct type (SHOW or NO_SHOW).
        Returns:
        the construct type.
      • setType

        public void setType​(VerilogShowCancelled.Type type)
        Sets the show-cancelled construct type (SHOW or NO_SHOW).
        Parameters:
        type - the type to be set.
      • isShow

        public boolean isShow()
        Checks whether the construct is SHOW.
        Returns:
        true iff the construct is SHOW.
      • isNoShow

        public boolean isNoShow()
        Checks whether the construct is NO_SHOW.
        Returns:
        true iff the construct is NO_SHOW.
      • setShow

        public void setShow()
        Sets the construct type to SHOW.
      • setNoShow

        public void setNoShow()
        Sets the construct type to NO_SHOW.
      • getReferences

        public java.util.List<VerilogReference> getReferences()
        Returns the references of the show-cancelled construct.
        Returns:
        the list of references.
      • addReference

        public void addReference​(VerilogReference reference)
        Adds the reference to the show-cancelled construct.
        Parameters:
        reference - the reference to be added.