1 /*
2 Copyright 2004 by Ralph Hartley
3 This software is licenced under the terms of the
4 Gnu Public Licence
5 */
6
7 import java.util.Set;
8 import java.awt.Color;
9
10 public interface Styleable {
11
12 public void setLineType(LineType type,Size thick,Color color,Set subsel);
13 }
14