Class Diagram
- java.lang.Object
-
- com.orchestranetworks.addon.dmdv.model.extension.Diagram
-
public final class Diagram extends java.lang.ObjectRepresents a data structure.- Since:
- 1.0.0
-
-
Constructor Summary
Constructors Constructor Description Diagram()Constructs a newDiagramwith a root group node defined as "root".
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description TablecreateExternalTable(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.DatasetGroupgetRootNode()Returns the root group node of the current data structure.
-
-
-
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 tabletooltip- 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.
-
-