Ejemplo n.º 1
0
 public boolean removeFillArea(FillArea fa) {
   return fillAreas.remove(fa);
 }
Ejemplo n.º 2
0
 public FillArea removeFillArea(int index) {
   return fillAreas.remove(index);
 }
Ejemplo n.º 3
0
 public boolean removeShapeMarker(ShapeMarker sm) {
   return shapeMarker.remove(sm);
 }
Ejemplo n.º 4
0
 public ShapeMarker removeShapeMarker(int index) {
   return shapeMarker.remove(index);
 }
Ejemplo n.º 5
0
 public boolean removeRangeMarker(RangeMarker rm) {
   return rangeMarker.remove(rm);
 }
Ejemplo n.º 6
0
 public RangeMarker removeRangeMarker(int index) {
   return rangeMarker.remove(index);
 }