1 19 package jcckit.graphic; 20 21 28 public abstract class BasicGraphicalElement implements GraphicalElement { 29 private final GraphicAttributes _attributes; 30 31 37 public BasicGraphicalElement(GraphicAttributes attributes) { 38 _attributes = attributes; 39 } 40 41 45 public GraphicAttributes getGraphicAttributes() { 46 return _attributes; 47 } 48 49 55 public boolean isClosed() { 56 return true; 57 } 58 } 59 | Popular Tags |