h.ST_Agdesc_s Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of plantuml-mit Show documentation
Show all versions of plantuml-mit Show documentation
PlantUML is a component that allows to quickly write diagrams from text.
// THIS FILE HAS BEEN GENERATED BY A PREPROCESSOR.
package h;
import smetana.core.UnsupportedStarStruct;
import smetana.core.__struct__;
final public class ST_Agdesc_s extends UnsupportedStarStruct {
public int directed; /* if edges are asymmetric */
public int strict; /* if multi-edges forbidden */
public int no_loop; /* if no loops */
public int maingraph; /* if this is the top level graph */
public int flatlock; /* if sets are flattened into lists in cdt */
public int no_write; /* if a temporary subgraph */
public int has_attrs; /* if string attr tables should be initialized */
public int has_cmpnd; /* if may contain collapsed nodes */
@Override
public void ___(__struct__ other) {
ST_Agdesc_s other2 = (ST_Agdesc_s) other;
directed = other2.directed;
strict = other2.strict;
no_loop = other2.no_loop;
maingraph = other2.maingraph;
flatlock = other2.flatlock;
no_write = other2.no_write;
has_attrs = other2.has_attrs;
has_cmpnd = other2.has_cmpnd;
}
@Override
public __struct__ copy() {
final ST_Agdesc_s result = new ST_Agdesc_s();
result.directed = directed;
result.strict = strict;
result.no_loop = no_loop;
result.maingraph = maingraph;
result.flatlock = flatlock;
result.no_write = no_write;
result.has_attrs = has_attrs;
result.has_cmpnd = has_cmpnd;
return result;
}
}
// struct Agdesc_s { /* graph descriptor */
// unsigned directed:1; /* if edges are asymmetric */
// unsigned strict:1; /* if multi-edges forbidden */
// unsigned no_loop:1; /* if no loops */
// unsigned maingraph:1; /* if this is the top level graph */
// unsigned flatlock:1; /* if sets are flattened into lists in cdt */
// unsigned no_write:1; /* if a temporary subgraph */
// unsigned has_attrs:1; /* if string attr tables should be initialized */
// unsigned has_cmpnd:1; /* if may contain collapsed nodes */
// };