Class Diagram


  • public final class Diagram
    extends java.lang.Object
    Represents a data structure.
    Since:
    1.0.0
    • Constructor Summary

      Constructors 
      Constructor Description
      Diagram()
      Constructs a new Diagram with a root group node defined as "root".
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      Table createExternalTable​(java.lang.String name, java.lang.String tooltip)
      Creates a table from an external dataset.
      java.util.List<Table> getExternalTables()
      Returns the list of external tables in the current data structure.
      DatasetGroup getRootNode()
      Returns the root group node of the current data structure.
      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • Diagram

        public Diagram()
        Constructs a new Diagram with a root group node defined as "root".
    • Method Detail

      • getRootNode

        public DatasetGroup getRootNode()
        Returns the root group node of the current data structure.
      • createExternalTable

        public Table createExternalTable​(java.lang.String name,
                                         java.lang.String tooltip)
        Creates a table from an external dataset. Tables from external datasets are shaded when using the default template.
        Parameters:
        name - specific name of the table
        tooltip - table tool tip
        Returns:
        the new table
      • getExternalTables

        public java.util.List<Table> getExternalTables()
        Returns the list of external tables in the current data structure.