ProjektGraph/graph/EdgeWeightMarking.java
2024-07-07 23:39:17 +02:00

18 lines
311 B
Java

package graph;
public class EdgeWeightMarking extends EdgeMarking {
private int weight;
public EdgeWeightMarking(int weight){
this.weight = weight;
}
public void setWeight(int weight){
this.weight=weight;
}
public int getWeight(){
return this.weight;
}
}