ProjektGraph/graph/VertexMarking.java

11 lines
353 B
Java
Raw Normal View History

2024-06-15 14:48:28 +00:00
package graph;
2024-07-07 21:07:56 +00:00
/**
* Represents a marking associated with a vertex in a graph.
* This class serves as a base abstraction for vertex markings.
*/
2024-06-15 14:48:28 +00:00
public abstract class VertexMarking extends Marking {
2024-07-07 21:07:56 +00:00
// This class currently does not have any additional attributes or methods.
// It extends Marking, inheriting its properties and behaviors.
2024-06-15 14:48:28 +00:00
}