public interface IEditable
Modifier and Type | Method and Description |
---|---|
boolean |
isDirty()
Tests whether the model has been changed from the last clean
state.
|
boolean |
isEditable()
Tests whether the model marked as editable can be
edited.
|
void |
save(PrintWriter writer)
Saves the model into the provided writer.
|
void |
setDirty(boolean dirty)
Sets the dirty flag of the model.
|
boolean isEditable()
true
if model can be modified, false
otherwise.boolean isDirty()
true
if the model has been changed and need savingvoid save(PrintWriter writer)
writer
- an object that should be used to
write ASCII representation of the modelvoid setDirty(boolean dirty)
dirty
- a new value for the 'dirty' flag
Copyright (c) 2000, 2017 Eclipse Contributors and others. All rights reserved.Guidelines for using Eclipse APIs.