ProjektGraph/graph/Vertex.java

35 lines
391 B
Java
Raw Normal View History

2024-06-15 14:48:28 +00:00
package graph;
public abstract class Vertex {
// ATTRIBUTE
2024-06-15 14:48:28 +00:00
private String name;
// KONSTRUKTOREN
2024-06-15 14:48:28 +00:00
public Vertex() {
this.name = "";
}
public Vertex(String s) {
this.name = s;
}
// GET-ER
2024-06-15 14:48:28 +00:00
public String getName() {
return this.name;
}
// SET-ER
2024-06-15 14:48:28 +00:00
public void setName(String s) {
this.name = s;
}
}