blob: 627395ef424870243483b7d3f929316742df3c4f (
plain)
1
2
3
4
5
6
7
8
9
10
|
package com.c2kernel.graph.model;
// Classes that implement this interface must
// have a parameter less constructor
public interface VertexOutlineCreator
{
public void setOutline(Vertex vertex);
}
|