Class FMIType

    • Field Summary

      Fields 
      Modifier and Type Field Description
      java.lang.String description
      A description of the type.
      boolean fixed
      True if the value is fixed.
      java.lang.String name
      The name of the type.
    • Constructor Summary

      Constructors 
      Constructor Description
      FMIType​(java.lang.String name, java.lang.String description, org.w3c.dom.Element element)
      Construct a variable.
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      abstract java.lang.String toString()
      Return the string value of the base element.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Field Detail

      • description

        public java.lang.String description
        A description of the type.
      • fixed

        public boolean fixed
        True if the value is fixed.
      • name

        public java.lang.String name
        The name of the type.
    • Constructor Detail

      • FMIType

        public FMIType​(java.lang.String name,
                       java.lang.String description,
                       org.w3c.dom.Element element)
        Construct a variable.
        Parameters:
        name - The name of this variable.
        description - A description of this variable.
        element - The XML Element that may contain a "fixed" element.
    • Method Detail

      • toString

        public abstract java.lang.String toString()
        Return the string value of the base element.
        Overrides:
        toString in class java.lang.Object
        Returns:
        The string value.