Package org.openflexo.pamela.factory
Interface EditingContext
-
- All Known Implementing Classes:
EditingContextImpl
public interface EditingContext
Represents anEditingContext
managing a collection of PAMELA objects
Objects might be registered and unregistered to/from EditingContext.
AnUndoManager
might be declared for anEditingContext
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description UndoManager
getUndoManager()
Return UndoManager associated with thisEditingContext
when any.boolean
register(java.lang.Object object)
Register supplied object in this EditingContextboolean
unregister(java.lang.Object object)
Unregister supplied object from this EditingContext
-
-
-
Method Detail
-
register
boolean register(java.lang.Object object)
Register supplied object in this EditingContext- Parameters:
object
-- Returns:
- boolean indicating if registering was successfull
-
unregister
boolean unregister(java.lang.Object object)
Unregister supplied object from this EditingContext- Parameters:
object
-- Returns:
- boolean indicating if un-registering was successfull
-
getUndoManager
UndoManager getUndoManager()
Return UndoManager associated with thisEditingContext
when any.- Returns:
-
-