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.
-
Constructor Details
-
AccountEditor
public AccountEditor()
-
-
Method Details
-
applyToAccount
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
Return an iterator of EditorField objects (other types of objects may be possible in the future.
-