Skip to content

Package: PropertyDrawEntry

PropertyDrawEntry

Coverage

1: package networkconfigurator;
2:
3: /**
4: * Entry which is drawable on the jpanel.
5: *
6: * @author Jannik G.
7: *
8: */
9: public interface PropertyDrawEntry {
10:         /**
11:          * Accept methode for the DetaibarVisitor.
12:          *
13:          * @param visitor
14:          * the visitor
15:          */
16:         void accept(DetailDrawVisitor visitor);
17: }