Package org.syncany.plugins.transfer
Annotation Type Setup
-
@Target(FIELD) @Retention(RUNTIME) public @interface Setup
TheSetup
annotation alters the initialization process.- See Also:
TransferPluginOptions
-
-
Optional Element Summary
Optional Elements Modifier and Type Optional Element Description java.lang.Class<? extends TransferPluginOptionCallback>
callback
java.lang.Class<? extends TransferPluginOptionConverter>
converter
java.lang.String
description
A field description to make the meaning of a field better understandable.FileType
fileType
In case the field represents aFile
, this option defines whether a file or folder is required.int
order
A setting's position in the initialization process (lower comes first).
The order cannot be assured if two fields have the same order position.boolean
sensitive
Suppress key inputs during initialization.boolean
singular
Singular values have to be inserted again when a user wants to changes valuesboolean
visible
Visible values are shown to the user during setup, invisible one are hidden.
-
-
-
Element Detail
-
order
int order
A setting's position in the initialization process (lower comes first).
The order cannot be assured if two fields have the same order position.- Default:
- -1
-
-
-
description
java.lang.String description
A field description to make the meaning of a field better understandable.- Default:
- ""
-
-
-
sensitive
boolean sensitive
Suppress key inputs during initialization.- Default:
- false
-
-
-
singular
boolean singular
Singular values have to be inserted again when a user wants to changes values- Default:
- false
-
-
-
visible
boolean visible
Visible values are shown to the user during setup, invisible one are hidden.- Default:
- true
-
-
-
callback
java.lang.Class<? extends TransferPluginOptionCallback> callback
- See Also:
TransferPluginOptionCallback
- Default:
- org.syncany.plugins.transfer.TransferPluginOptionCallback.class
-
-
-
converter
java.lang.Class<? extends TransferPluginOptionConverter> converter
- See Also:
TransferPluginOptionConverter
- Default:
- org.syncany.plugins.transfer.TransferPluginOptionConverter.class
-
-