use of mom.trd.opentheso.bdd.helper.nodes.candidat.NodeCandidat in project opentheso by miledrousset.
the class SelectedCandidat method initSelectedCandidat.
@PostConstruct
public void initSelectedCandidat() {
selected = new NodeCandidatValue();
selected.setEtat("");
selected.setIdConcept("");
selected.setValue("");
selected.setNbProp(0);
infoCdt = new NodeCandidat();
infoCdt.setNodesUser(new ArrayList<>());
infoCdt.setNodeTraductions(new ArrayList<>());
selectedNvx = new NodeAutoCompletion();
tradInsert = new ArrayList<>();
setPreferences();
nomsProp = new ArrayList<>();
}
use of mom.trd.opentheso.bdd.helper.nodes.candidat.NodeCandidat in project opentheso by miledrousset.
the class SelectedCandidat method reInit.
/**
* RĂ©initialise le candidat (tout est vide)
*/
public void reInit() {
selected = new NodeCandidatValue();
selected.setEtat("");
selected.setIdConcept("");
selected.setValue("");
selected.setNbProp(0);
infoCdt = new NodeCandidat();
infoCdt.setNodesUser(new ArrayList<>());
infoCdt.setNodeTraductions(new ArrayList<>());
selectedNvx = new NodeAutoCompletion();
note = "";
niveau = "";
domaine = "";
nomsProp = new ArrayList<>();
}
Aggregations