Package ro.sync.diff.merge.api
Interface MergeFilesOptionsConstants
-
@API(type=NOT_EXTENDABLE, src=PUBLIC) public interface MergeFilesOptionsConstants
Constants used as keys in the mergeOptions map parameter fromDiffAndMergeTools.openMergeApplication(java.io.File, java.io.File, java.io.File, java.util.Map)
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interface
MergeFilesOptionsConstants.FilterModeValues
The values for filter mode option.
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
FILTER_MODES_KEY
This option controls the default state of the filter buttons from the merge dialog.
Only one filter can be applied.static java.lang.String
MERGE_DIALOG_TITLE
This option controls the title of the merge dialog.
If this option is set, its value will be used as the title of the merge dialog.static java.lang.String
SHOW_ALL_FILES_TOOLTIP
Show all files filter button tooltipstatic java.lang.String
SHOW_ONLY_CONFLICTING_FILES_TOOLTIP
Show only conflicting files filter button tooltipstatic java.lang.String
SHOW_ONLY_FILES_MODIFIED_BY_OTHERS_TOOLTIP
Show only files modified by others filter button tooltipstatic java.lang.String
SHOW_ONLY_FILES_MODIFIED_BY_YOU_AND_OTHERS_TOOLTIP
Show only files modified by you and others filter button tooltipstatic java.lang.String
SHOW_ONLY_FILES_MODIFIED_BY_YOU_TOOLTIP
Show only files modified by you filter button tooltipstatic java.lang.String
VIRTUAL_PATH_FOR_PERSONAL_MODIFIED_FILES_DIRECTORY
If this option is set, its value will be used in the merge dialog to present all the file paths of the files that will be modified as a result of the merge operations.
-
-
-
Field Detail
-
VIRTUAL_PATH_FOR_PERSONAL_MODIFIED_FILES_DIRECTORY
static final java.lang.String VIRTUAL_PATH_FOR_PERSONAL_MODIFIED_FILES_DIRECTORY
If this option is set, its value will be used in the merge dialog to present all the file paths of the files that will be modified as a result of the merge operations.
It can be useful if you plan to do the merging in a temporary directory, and copy all the changes when the dialog is closed. The dialog can use this option to hide the real temporary directory path from the user, using instead the value provided.
This is actually a replacement for personalModifiedFilesDir (one of the parameters ofDiffAndMergeTools.openMergeApplication(java.io.File, java.io.File, java.io.File, java.util.Map)
) in the merge tool UI.- See Also:
- Constant Field Values
-
FILTER_MODES_KEY
static final java.lang.String FILTER_MODES_KEY
This option controls the default state of the filter buttons from the merge dialog.
Only one filter can be applied. The possible values of this option can be found inMergeFilesOptionsConstants.FilterModeValues
.- See Also:
- Constant Field Values
-
MERGE_DIALOG_TITLE
static final java.lang.String MERGE_DIALOG_TITLE
This option controls the title of the merge dialog.
If this option is set, its value will be used as the title of the merge dialog.- See Also:
- Constant Field Values
-
SHOW_ALL_FILES_TOOLTIP
static final java.lang.String SHOW_ALL_FILES_TOOLTIP
Show all files filter button tooltip- Since:
- 22.1
- See Also:
- Constant Field Values
-
SHOW_ONLY_FILES_MODIFIED_BY_OTHERS_TOOLTIP
static final java.lang.String SHOW_ONLY_FILES_MODIFIED_BY_OTHERS_TOOLTIP
Show only files modified by others filter button tooltip- Since:
- 22.1
- See Also:
- Constant Field Values
-
SHOW_ONLY_FILES_MODIFIED_BY_YOU_AND_OTHERS_TOOLTIP
static final java.lang.String SHOW_ONLY_FILES_MODIFIED_BY_YOU_AND_OTHERS_TOOLTIP
Show only files modified by you and others filter button tooltip- Since:
- 22.1
- See Also:
- Constant Field Values
-
SHOW_ONLY_FILES_MODIFIED_BY_YOU_TOOLTIP
static final java.lang.String SHOW_ONLY_FILES_MODIFIED_BY_YOU_TOOLTIP
Show only files modified by you filter button tooltip- Since:
- 22.1
- See Also:
- Constant Field Values
-
SHOW_ONLY_CONFLICTING_FILES_TOOLTIP
static final java.lang.String SHOW_ONLY_CONFLICTING_FILES_TOOLTIP
Show only conflicting files filter button tooltip- Since:
- 22.1
- See Also:
- Constant Field Values
-
-