Im using JUNG to create a simple family tree application. So far I am able to add the parent. But I have difficulty on what approach should I take to store the children.
this is my data structure
package FamTree;
import java.awt.geom.Point2D;
import java.util.ArrayList;
import java.util.List;
public class Person{
private Integer pID;
private String pName;
private Point2D location;
private Integer fatherID;
private Integer motherID;
private Integer spouseID;
private List<Integer> children = new ArrayList<Integer>();
private String pSex;
Person(int pID,String pName, Point2D location,String pSex){
this.pID = pID;
this.pName = pName;
this.location = location;
this.pSex = pSex;
this.fatherID = 0;
this.motherID = 0;
this.spouseID = 0;
}
public int getpID() {
return pID;
}
public void setpID(int pID) {
this.pID = pID;
}
public Integer getFatherID() {
return fatherID;
}
public void setFatherID(Integer fatherID) {
this.fatherID = fatherID;
}
public Integer getMotherID() {
return motherID;
}
public void setMotherID(Integer motherID) {
this.motherID = motherID;
}
public Point2D getpLoc() {
return location;
}
public void setLoc(Point2D locationD) {
this.location = locationD;
}
public String getpName() {
return pName;
}
public void setpName(String pName) {
this.pName = pName;
}
public String getpSex() {
return pSex;
}
public void setpSex(String pSex) {
this.pSex = pSex;
}
public Integer getSpouseID() {
return spouseID;
}
public void setSpouseID(Integer spouseID) {
this.spouseID = spouseID;
}
public List<Integer> getChildren() {
return children;
}
public void setChildren(List<Integer> children) {
this.children = children;
}
}
I've read some of the post regarding family tree data structure, so I right now I can think of using ArrayList. But I dont have any clue if this is a right approach, and how to do the add/delete process.
and this is the code for adding and delete the Pserson(vertex);
add person
JMenu submenu = new JMenu("Add Person");
submenu.add(new AbstractAction("Male") {
public void actionPerformed(ActionEvent e) {
genID generatedID = new genID();
Integer theID =generatedID.getGenID();
Person newP = new Person(theID,"unknown", p, "male");
vertex.put(theID,newP);
graph.addVertex(theID);
layout2.setLocation(theID, vv.getRenderContext().getMultiLayerTransformer().inverseTransform(p));
System.out.println("personID: "+vertex.get(theID).getpID()+
", fatherID: "+vertex.get(theID).getFatherID()+
", motherID: "+vertex.get(theID).getMotherID()
);
vv.repaint();
for (Integer n : graph.getVertices())
{
//Let's print out the data so we can get a good understanding of what we've got going on.
System.out.println("ID: "+vertex.get(n).getpID()+", Name: "+vertex.get(n).getpName()+", Location: "+vertex.get(n).getpLoc());
}
}
});
delete person;
popup.add(new AbstractAction("Delete Person") {
public void actionPerformed(ActionEvent e) {
graph.removeVertex(v);
vv.repaint();
for (Integer n : graph.getVertices())
{
System.out.println("ID: "+vertex.get(n).getpID()+", Name: "+vertex.get(n).getpName()+", Location: "+vertex.get(n).getpLoc());
}
}
});
adding parent(mother);
submenu.add(new AbstractAction("Add Mother"){
public void actionPerformed(ActionEvent ae) {
System.out.println("Attempt to add Mother!");
genID generatedID = new genID();
Integer motherID=0;
boolean pass=true;
do{
System.out.println("While checking ID!");
motherID =generatedID.getGenID();
for (Integer n : graph.getVertices()){
Integer existID = vertex.get(n).getpID();
if(motherID==existID){
pass=false;
System.out.println("Identical ID");
}
}
}while(!pass);
System.out.println("1m: personID: "+vertex.get(v).getpID()+
", fatherID: "+vertex.get(v).getFatherID()+
", motherID: "+vertex.get(v).getMotherID()
);
Point2D point = vertex.get(v).getpLoc();
Point2D.Double newPoint =new Point2D.Double();
newPoint.setLocation(point.getX()+20, point.getY()-100);
Person motherInfo = new Person(motherID,"unknown", newPoint, "female");
vertex.put(motherID,motherInfo);
vertex.get(v).setMotherID(motherID);
graph.addVertex(motherID);
layout2.setLocation(motherID, vv.getRenderContext().getMultiLayerTransformer().inverseTransform(newPoint));
Number edgeID = 0;
edgeID = (Number)generatedID.getGenID();
edgeID = edgeID.intValue()+2;
graph.addEdge(edgeID, motherID, v, EdgeType.DIRECTED);
System.out.println("v is : "+v+" , motherID : "+motherID);
System.out.println("edge is : "+edgeID+" , from : "+motherID+" to :"+v);
Integer fatherID = (Integer)vertex.get(v).getFatherID();
System.out.println("fatherID bfore : "+fatherID);
System.out.println("2m: personID: "+vertex.get(v).getpID()+
", fatherID: "+vertex.get(v).getFatherID()+
", motherID: "+vertex.get(v).getMotherID()
);
if(fatherID!=0){
System.out.println("fatherID bfore : "+fatherID);
System.out.println("motherID bfore : "+motherID);
Number marriageID = 0;
marriageID = (Number)generatedID.getGenID();
marriageID = marriageID.intValue()+3;
System.out.println("marriageID bfore : "+marriageID);
graph.addEdge(marriageID, fatherID, motherID, EdgeType.UNDIRECTED);
vv.repaint();
System.out.println("marriageID after : "+marriageID);
}
System.out.println("v is : "+v+" , father : "+fatherID+", mother : "+motherID);
vv.repaint();
}
});
I have no idea how to add, and implement the setter and getter for the children value. Please help me out. Tq.