All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.nakedobjects.metamodel.facets.object.dirty.ClearDirtyObjectFacet Maven / Gradle / Ivy

The newest version!
package org.nakedobjects.metamodel.facets.object.dirty;

import org.nakedobjects.metamodel.adapter.NakedObject;


/**
 * Explicitly indicate that this object is no longer dirty and so does not need to be persisted.
 * 
 * 

* In the standard Naked Objects Programming Model, typically corresponds to method named markDirty. * *

* TODO: this was introduced for Naked Objects 2.0, but not sure if they are still required for Naked Objects * 3.0. * * @see IsDirtyObjectFacet * @see MarkDirtyObjectFacet */ public interface ClearDirtyObjectFacet extends DirtyObjectFacet { public void invoke(NakedObject object); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy