mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-08 17:45:24 +02:00
Disallow overriding for various persistence control methods.
This commit is contained in:
parent
40bdad2729
commit
5845690183
1 changed files with 4 additions and 4 deletions
|
@ -33,23 +33,23 @@ public abstract class RSEModelObject extends PropertySetContainer implements IRS
|
||||||
protected boolean _wasRestored = false;
|
protected boolean _wasRestored = false;
|
||||||
|
|
||||||
|
|
||||||
public boolean isDirty()
|
public final boolean isDirty()
|
||||||
{
|
{
|
||||||
return _isDirty;
|
return _isDirty;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setDirty(boolean flag)
|
public final void setDirty(boolean flag)
|
||||||
{
|
{
|
||||||
_isDirty = flag;
|
_isDirty = flag;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
public boolean wasRestored()
|
public final boolean wasRestored()
|
||||||
{
|
{
|
||||||
return _wasRestored;
|
return _wasRestored;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setWasRestored(boolean flag)
|
public final void setWasRestored(boolean flag)
|
||||||
{
|
{
|
||||||
_wasRestored = flag;
|
_wasRestored = flag;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue