Class AccountEditor

java.lang.Object
com.moneydance.apps.md.extensionapi.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

    Modifier and Type Method Description
    boolean applyToAccount​(Account acct)
    Determine if this editor applies to the given account.
    abstract java.util.List<EditorField> 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 Details

  • Method Details

    • 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.List<EditorField> getEditorFields()
      Return an iterator of EditorField objects (other types of objects may be possible in the future.