Uses of Class
com.tech.app.models.gma.NodeStruct
-
Packages that use NodeStruct Package Description com.tech.app.models.gma -
-
Uses of NodeStruct in com.tech.app.models.gma
Fields in com.tech.app.models.gma with type parameters of type NodeStruct Modifier and Type Field Description private java.util.List<NodeStruct>
Node. children
private java.util.List<NodeStruct>
Node. parents
Methods in com.tech.app.models.gma that return types with arguments of type NodeStruct Modifier and Type Method Description java.util.List<NodeStruct>
Node. getChildren()
Méthode qui permet de récupérer la liste des enfants du noeud.java.util.List<NodeStruct>
Node. getParents()
Méthode qui permet de récupérer la liste des parents du noeud.Methods in com.tech.app.models.gma with parameters of type NodeStruct Modifier and Type Method Description void
Node. addChildren(NodeStruct n)
Méthode qui permet d'ajouter un noeud (NodeStruct) à la liste des enfants du noeud.void
Node. addParent(NodeStruct n)
Méthode qui permet d'ajouter un noeud (NodeStruct) à la liste des parents du noeud.Method parameters in com.tech.app.models.gma with type arguments of type NodeStruct Modifier and Type Method Description void
Node. setChildren(java.util.List<NodeStruct> children)
Méthode qui permet de donner/modifier la liste des enfants du noeud.void
Node. setParents(java.util.List<NodeStruct> parents)
Méthode qui permet de donner/modifier la liste des parents du noeud.Constructor parameters in com.tech.app.models.gma with type arguments of type NodeStruct Constructor Description Node(Marquage m, java.util.List<NodeStruct> children, java.util.List<NodeStruct> parents)
Constructeur pour la racine de l'arbre.Node(Marquage m, java.util.List<NodeStruct> children, java.util.List<NodeStruct> parents, java.lang.String name)
Constructeur pour un noeud quelconque.
-