Class AccountEditor


  • public abstract class AccountEditor
    extends java.lang.Object
    This interface is used by objects that want to help edit accounts in Moneydance.
    Since:
    build 565.
    • Constructor Summary

      Constructors 
      Constructor Description
      AccountEditor()  
    • Method Summary

      All Methods Instance Methods Abstract Methods Concrete Methods 
      Modifier and Type Method Description
      boolean applyToAccount​(Account acct)
      Determine if this editor applies to the given account.
      abstract java.util.Iterator getEditorFields()
      Return an iterator of EditorField objects (other types of objects may be possible in the future.
      • Methods inherited from class java.lang.Object

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

      • AccountEditor

        public AccountEditor()
    • Method Detail

      • applyToAccount

        public boolean applyToAccount​(Account acct)
        Determine if this editor applies to the given account. This will likely examine the type of account and return true if that account type is supported by this editor.
      • getEditorFields

        public abstract java.util.Iterator getEditorFields()
        Return an iterator of EditorField objects (other types of objects may be possible in the future.