.. java:import:: java.io Serializable DraftResult =========== .. java:package:: org.motechproject.mds.dto :noindex: .. java:type:: public class DraftResult implements Serializable After users do draft changes an instance of this class is returned. It contains information about the draft state. Constructors ------------ DraftResult ^^^^^^^^^^^ .. java:constructor:: public DraftResult(boolean changesMade, boolean outdated) :outertype: DraftResult Methods ------- isChangesMade ^^^^^^^^^^^^^ .. java:method:: public boolean isChangesMade() :outertype: DraftResult isOutdated ^^^^^^^^^^ .. java:method:: public boolean isOutdated() :outertype: DraftResult setChangesMade ^^^^^^^^^^^^^^ .. java:method:: public void setChangesMade(boolean changesMade) :outertype: DraftResult setOutdated ^^^^^^^^^^^ .. java:method:: public void setOutdated(boolean outdated) :outertype: DraftResult