Interface MDElement

    • Method Detail

      • getName

        @OpenApi
        @CheckForNull
        java.lang.String getName()
        Returns the name of the element. This element will return null always, because it can not have name. However the derived element may override this method and return specific name.
        Returns:
        name of the element.
      • accept

        @OpenApi
        void accept​(Visitor visitor)
             throws java.lang.Exception
        Method accepts visitor, and calls method visit<class name>(this) of visitor . See Visitor pattern for more details.
        Parameters:
        visitor - which visits this element.
        Throws:
        java.lang.Exception