Package de.soldin.jumpcore
Class UndoableSetGeometry
- java.lang.Object
-
- javax.swing.undo.AbstractUndoableEdit
-
- de.soldin.jumpcore.UndoableSetGeometry
-
- All Implemented Interfaces:
Serializable
,Iterable
,Collection
,UndoableEdit
public class UndoableSetGeometry extends AbstractUndoableEdit implements Collection
TheUndoableSetGeometry
is a implementation of aCollection
, as well as aAbstractUndoableEdit
. The purpose is to have an undoable swing component for modifying geometries.With these capabilities joined it can act as a container for multiple
UndoableSetGeometry
objects, which can be executed in a batch and as a single action.- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class javax.swing.undo.AbstractUndoableEdit
RedoName, UndoName
-
-
Constructor Summary
Constructors Constructor Description UndoableSetGeometry(Layer layer, String name)
UndoableSetGeometry(String name)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
add(UndoableSetGeometry t)
boolean
add(Object o)
boolean
addAll(Collection c)
void
clear()
boolean
contains(Object o)
boolean
containsAll(Collection c)
void
execute()
org.locationtech.jts.geom.Geometry
getGeom(Feature in_feature)
String
getName()
String
getPresentationName()
String
getRedoPresentationName()
String
getUndoPresentationName()
boolean
isEmpty()
Iterator
iterator()
void
redo()
boolean
remove(Object o)
boolean
removeAll(Collection c)
boolean
retainAll(Collection c)
void
setGeom(Feature feature, org.locationtech.jts.geom.Geometry geom)
int
size()
Object[]
toArray()
Object[]
toArray(Object[] a)
void
undo()
void
unexecute()
-
Methods inherited from class javax.swing.undo.AbstractUndoableEdit
addEdit, canRedo, canUndo, die, isSignificant, replaceEdit, toString
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface java.util.Collection
equals, hashCode, parallelStream, removeIf, spliterator, stream, toArray
-
-
-
-
Method Detail
-
redo
public void redo()
- Specified by:
redo
in interfaceUndoableEdit
- Overrides:
redo
in classAbstractUndoableEdit
-
undo
public void undo()
- Specified by:
undo
in interfaceUndoableEdit
- Overrides:
undo
in classAbstractUndoableEdit
-
getPresentationName
public String getPresentationName()
- Specified by:
getPresentationName
in interfaceUndoableEdit
- Overrides:
getPresentationName
in classAbstractUndoableEdit
-
getUndoPresentationName
public String getUndoPresentationName()
- Specified by:
getUndoPresentationName
in interfaceUndoableEdit
- Overrides:
getUndoPresentationName
in classAbstractUndoableEdit
-
getRedoPresentationName
public String getRedoPresentationName()
- Specified by:
getRedoPresentationName
in interfaceUndoableEdit
- Overrides:
getRedoPresentationName
in classAbstractUndoableEdit
-
execute
public void execute()
-
unexecute
public void unexecute()
-
getName
public String getName()
-
setGeom
public void setGeom(Feature feature, org.locationtech.jts.geom.Geometry geom)
-
getGeom
public org.locationtech.jts.geom.Geometry getGeom(Feature in_feature)
-
add
public boolean add(UndoableSetGeometry t)
-
size
public int size()
- Specified by:
size
in interfaceCollection
-
clear
public void clear()
- Specified by:
clear
in interfaceCollection
-
isEmpty
public boolean isEmpty()
- Specified by:
isEmpty
in interfaceCollection
-
toArray
public Object[] toArray()
- Specified by:
toArray
in interfaceCollection
-
add
public boolean add(Object o)
- Specified by:
add
in interfaceCollection
-
contains
public boolean contains(Object o)
- Specified by:
contains
in interfaceCollection
-
remove
public boolean remove(Object o)
- Specified by:
remove
in interfaceCollection
-
addAll
public boolean addAll(Collection c)
- Specified by:
addAll
in interfaceCollection
-
containsAll
public boolean containsAll(Collection c)
- Specified by:
containsAll
in interfaceCollection
-
removeAll
public boolean removeAll(Collection c)
- Specified by:
removeAll
in interfaceCollection
-
retainAll
public boolean retainAll(Collection c)
- Specified by:
retainAll
in interfaceCollection
-
iterator
public Iterator iterator()
- Specified by:
iterator
in interfaceCollection
- Specified by:
iterator
in interfaceIterable
-
toArray
public Object[] toArray(Object[] a)
- Specified by:
toArray
in interfaceCollection
-
-