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
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.
-
-
-
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.
-
-