Class UIDocumentState


  • public final class UIDocumentState
    extends java.lang.Object
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static long Closed
      The document has either not been successfully opened, or has been since closed.
      static long EditingDisabled
      Set before calling -disableEditing.
      static long InConflict
      Conflicts exist for the document's fileURL.
      static long Normal  
      static long ProgressAvailable
      Set if the document is busy loading or saving.
      static long SavingError
      An error has occurred that prevents the document from saving.
    • Method Summary

      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • Closed

        public static final long Closed
        The document has either not been successfully opened, or has been since closed. Document properties may not be valid.
        See Also:
        Constant Field Values
      • InConflict

        public static final long InConflict
        Conflicts exist for the document's fileURL. They can be accessed through +[NSFileVersion unresolvedConflictVersionsOfItemAtURL:].
        See Also:
        Constant Field Values
      • SavingError

        public static final long SavingError
        An error has occurred that prevents the document from saving.
        See Also:
        Constant Field Values
      • EditingDisabled

        public static final long EditingDisabled
        Set before calling -disableEditing. The document is is busy and it is not currently safe to allow user edits. -enableEditing will be called when it becomes safe to edit again.
        See Also:
        Constant Field Values
      • ProgressAvailable

        public static final long ProgressAvailable
        Set if the document is busy loading or saving. Progress is valid while this is set.
        See Also:
        Constant Field Values