
public class Edge {
   private int target;
   private char label;
   
public Edge(int target, char label) {
	super();
	this.target = target;
	this.label = label;
}

public int getTarget() {
	return target;
}

public void setTarget(int target) {
	this.target = target;
}

public char getLabel() {
	return label;
}

public void setLabel(char label) {
	this.label = label;
}
   
}
