Class ResolveFilesAutoOptions
- java.lang.Object
-
- com.perforce.p4java.option.Options
-
- com.perforce.p4java.option.client.ResolveFilesAutoOptions
-
public class ResolveFilesAutoOptions extends Options
Options class for IClient.resolveFilesAuto.Note that absolutely no sanity checking is performed in the current default implementation for clashing options, etc.
-
-
Field Summary
Fields Modifier and Type Field Description protected booleanacceptTheirsIf true, automatically accept "their" changes, as documented for the p4 "-at" option.protected booleanacceptYoursIf true, automatically accept "your" changes, as documented for the p4 "-ay" option.protected intchangelistIdLimits 'p4 resolve' to the files in changelist#.protected booleanforceResolveForces auto-mode resolve to accept the merged file even if there are conflicts.protected booleanforceTextualMergeIf true, forces 'p4 resolve' to attempt a textual merge, even for files with non-text (binary) types.protected booleanignoreLineEndingsIf true, ignores differences in line-ending convention.protected booleanignoreWhitespaceIf true, ignores whitespace altogether (for instance, deletion of tabs or other whitespace).protected booleanignoreWhitespaceChangesIf true, ignores whitespace-only changes (for instance, a tab replaced by eight spaces).static java.lang.StringOPTIONS_SPECSOptions: -n, -s, -af, -at, -ay, -as, -Aa, -Ab, -Ac, -Ad, -Am, -At, -c[changelist], -t, -db, -dw, -dl, -o, -Soprotected booleanresolveFileAttributeChangesResolve file attribute changes.protected booleanresolveFileBranchingResolve file branching.protected booleanresolveFileContentChangesResolve file content changes.protected booleanresolveFileDeletionsResolve file deletions.protected booleanresolveFiletypeChangesResolve filetype changes.protected booleanresolveMovedFilesResolve moved and renamed files.protected booleanresolveStreamSpecIf true, resolves changes that have been submitted to the stream spec since you opened it.protected booleansafeMergeIf true, only do "safe" resolves, as documented for the p4 "-as" option.protected booleanshowActionsOnlyIf true, don't do the actual resolve, just return the actions that would have been performed for the resolve.protected booleanshowBaseIf true, show the base file name and revision to be used during the merge.protected booleanskipFileIf true, skip this file.-
Fields inherited from class com.perforce.p4java.option.Options
immutable, optionList
-
-
Constructor Summary
Constructors Constructor Description ResolveFilesAutoOptions()Default constructor.ResolveFilesAutoOptions(boolean showActionsOnly, boolean safeMerge, boolean acceptTheirs, boolean acceptYours, boolean forceResolve)Explicit-value constructor.ResolveFilesAutoOptions(boolean showActionsOnly, boolean safeMerge, boolean acceptTheirs, boolean acceptYours, boolean forceResolve, boolean resolveFileBranching, boolean resolveFileContentChanges, boolean resolveFileDeletions, boolean resolveMovedFiles, boolean resolveFiletypeChanges, int changelistId)Explicit-value constructor.ResolveFilesAutoOptions(boolean showActionsOnly, boolean safeMerge, boolean acceptTheirs, boolean acceptYours, boolean forceResolve, boolean resolveFileBranching, boolean resolveFileContentChanges, boolean resolveFileDeletions, boolean resolveMovedFiles, boolean resolveFiletypeChanges, int changelistId, boolean forceTextualMerge, boolean ignoreWhitespaceChanges, boolean ignoreWhitespace, boolean ignoreLineEndings)Explicit-value constructor.ResolveFilesAutoOptions(java.lang.String... options)Strings-based constructor; see 'p4 help [command]' for possible options.
-
Method Summary
-
Methods inherited from class com.perforce.p4java.option.Options
getOptions, isImmutable, processFields, setImmutable, setOptions
-
-
-
-
Field Detail
-
OPTIONS_SPECS
public static final java.lang.String OPTIONS_SPECS
Options: -n, -s, -af, -at, -ay, -as, -Aa, -Ab, -Ac, -Ad, -Am, -At, -c[changelist], -t, -db, -dw, -dl, -o, -So- See Also:
- Constant Field Values
-
safeMerge
protected boolean safeMerge
If true, only do "safe" resolves, as documented for the p4 "-as" option.
-
acceptTheirs
protected boolean acceptTheirs
If true, automatically accept "their" changes, as documented for the p4 "-at" option.
-
acceptYours
protected boolean acceptYours
If true, automatically accept "your" changes, as documented for the p4 "-ay" option.
-
showActionsOnly
protected boolean showActionsOnly
If true, don't do the actual resolve, just return the actions that would have been performed for the resolve. Corresponds to the '-n' option.
-
skipFile
protected boolean skipFile
If true, skip this file. Corresponds to the '-s' option.
-
forceResolve
protected boolean forceResolve
Forces auto-mode resolve to accept the merged file even if there are conflicts. Corresponds to the -af option.
-
resolveFileAttributeChanges
protected boolean resolveFileAttributeChanges
Resolve file attribute changes. Corresponds to the '-Aa' option.
-
resolveFileBranching
protected boolean resolveFileBranching
Resolve file branching. Corresponds to the '-Ab' option.
-
resolveFileContentChanges
protected boolean resolveFileContentChanges
Resolve file content changes. Corresponds to the '-Ac' option.
-
resolveFileDeletions
protected boolean resolveFileDeletions
Resolve file deletions. Corresponds to the '-Ad' option.
-
resolveMovedFiles
protected boolean resolveMovedFiles
Resolve moved and renamed files. Corresponds to the '-Am' option.
-
resolveFiletypeChanges
protected boolean resolveFiletypeChanges
Resolve filetype changes. Corresponds to the '-At' option.
-
changelistId
protected int changelistId
Limits 'p4 resolve' to the files in changelist#. Corresponds to '-c changelist#'.
-
forceTextualMerge
protected boolean forceTextualMerge
If true, forces 'p4 resolve' to attempt a textual merge, even for files with non-text (binary) types. Corresponds to the '-t' option.
-
ignoreWhitespaceChanges
protected boolean ignoreWhitespaceChanges
If true, ignores whitespace-only changes (for instance, a tab replaced by eight spaces). Corresponds to the '-db' option.
-
ignoreWhitespace
protected boolean ignoreWhitespace
If true, ignores whitespace altogether (for instance, deletion of tabs or other whitespace). Corresponds to the '-dw' option.
-
ignoreLineEndings
protected boolean ignoreLineEndings
If true, ignores differences in line-ending convention. Corresponds to the '-dl' option.
-
showBase
protected boolean showBase
If true, show the base file name and revision to be used during the merge. Corresponds to the '-o' option.
-
resolveStreamSpec
protected boolean resolveStreamSpec
If true, resolves changes that have been submitted to the stream spec since you opened it. You may not submit changes to the stream spec until newer changes have been resolved.
-
-
Constructor Detail
-
ResolveFilesAutoOptions
public ResolveFilesAutoOptions()
Default constructor.
-
ResolveFilesAutoOptions
public ResolveFilesAutoOptions(java.lang.String... options)
Strings-based constructor; see 'p4 help [command]' for possible options.WARNING: you should not pass more than one option or argument in each string parameter. Each option or argument should be passed-in as its own separate string parameter, without any spaces between the option and the option value (if any).
NOTE: setting options this way always bypasses the internal options values, and getter methods against the individual values corresponding to the strings passed in to this constructor will not normally reflect the string's setting. Do not use this constructor unless you know what you're doing and / or you do not also use the field getters and setters.
- Parameters:
options- options- See Also:
Options(java.lang.String...)
-
ResolveFilesAutoOptions
public ResolveFilesAutoOptions(boolean showActionsOnly, boolean safeMerge, boolean acceptTheirs, boolean acceptYours, boolean forceResolve)Explicit-value constructor.- Parameters:
showActionsOnly- showActionsOnlysafeMerge- safeMergeacceptTheirs- acceptTheirsacceptYours- acceptYoursforceResolve- forceResolve
-
ResolveFilesAutoOptions
public ResolveFilesAutoOptions(boolean showActionsOnly, boolean safeMerge, boolean acceptTheirs, boolean acceptYours, boolean forceResolve, boolean resolveFileBranching, boolean resolveFileContentChanges, boolean resolveFileDeletions, boolean resolveMovedFiles, boolean resolveFiletypeChanges, int changelistId)Explicit-value constructor.- Parameters:
showActionsOnly- showActionsOnlysafeMerge- safeMergeacceptTheirs- acceptTheirsacceptYours- acceptYoursforceResolve- forceResolveresolveFileBranching- resolveFileBranchingresolveFileContentChanges- resolveFileContentChangesresolveFileDeletions- resolveFileDeletionsresolveMovedFiles- resolveMovedFilesresolveFiletypeChanges- resolveFiletypeChangeschangelistId- changelistId
-
ResolveFilesAutoOptions
public ResolveFilesAutoOptions(boolean showActionsOnly, boolean safeMerge, boolean acceptTheirs, boolean acceptYours, boolean forceResolve, boolean resolveFileBranching, boolean resolveFileContentChanges, boolean resolveFileDeletions, boolean resolveMovedFiles, boolean resolveFiletypeChanges, int changelistId, boolean forceTextualMerge, boolean ignoreWhitespaceChanges, boolean ignoreWhitespace, boolean ignoreLineEndings)Explicit-value constructor.- Parameters:
showActionsOnly- showActionsOnlysafeMerge- safeMergeacceptTheirs- acceptTheirsacceptYours- acceptYoursforceResolve- forceResolveresolveFileBranching- resolveFileBranchingresolveFileContentChanges- resolveFileContentChangesresolveFileDeletions- resolveFileDeletionsresolveMovedFiles- resolveMovedFilesresolveFiletypeChanges- resolveFiletypeChangeschangelistId- changelistIdforceTextualMerge- forceTextualMergeignoreWhitespaceChanges- ignoreWhitespaceChangesignoreWhitespace- ignoreWhitespaceignoreLineEndings- ignoreLineEndings
-
-
Method Detail
-
processOptions
public java.util.List<java.lang.String> processOptions(IServer server) throws OptionsException
Description copied from class:OptionsTurn this (specific) options object into a list of strings to be sent to the Perforce server as options for a specific command. As a side effect, set the option list associated with this Option to the result.The method is used by the server object to generate the string-based arguments expected by the Perforce server corresponding to the state of this method-specific options object. Will return an empty list if there are no "interesting" options set or available. May simply return the superclass options string list if is non-null, but that behaviour is neither guaranteed nor required.
Note that this method is not intended to be called directly by users but by the underlying P4Java plumbing; odd results may occur if this method is called in other contexts.
- Specified by:
processOptionsin classOptions- Parameters:
server- possibly-null IServer representing the Perforce server the options are to be used against. If this parameter is null, it is acceptable to throw an OptionsException, but it is also possible to ignore it and do the best you can with what you've got...- Returns:
- non-null (but possibly empty) string list representing the normalized Perforce server arguments corresponding to the state of this specific options object.
- Throws:
OptionsException- if an error occurs in options processing that is not some species of ConnectionException, RequestException, AccessException, etc.- See Also:
Options.processOptions(com.perforce.p4java.server.IServer)
-
isSafeMerge
public boolean isSafeMerge()
-
setSafeMerge
public ResolveFilesAutoOptions setSafeMerge(boolean safeMerge)
-
isAcceptTheirs
public boolean isAcceptTheirs()
-
setAcceptTheirs
public ResolveFilesAutoOptions setAcceptTheirs(boolean acceptTheirs)
-
isAcceptYours
public boolean isAcceptYours()
-
setAcceptYours
public ResolveFilesAutoOptions setAcceptYours(boolean acceptYours)
-
isShowActionsOnly
public boolean isShowActionsOnly()
-
setShowActionsOnly
public ResolveFilesAutoOptions setShowActionsOnly(boolean showActionsOnly)
-
isSkipFile
public boolean isSkipFile()
-
setSkipFile
public ResolveFilesAutoOptions setSkipFile(boolean skipFile)
-
isForceResolve
public boolean isForceResolve()
-
isResolveStreamSpec
public boolean isResolveStreamSpec()
-
setForceResolve
public ResolveFilesAutoOptions setForceResolve(boolean forceResolve)
-
isResolveFileBranching
public boolean isResolveFileBranching()
-
setResolveFileBranching
public ResolveFilesAutoOptions setResolveFileBranching(boolean resolveFileBranching)
-
isResolveFileContentChanges
public boolean isResolveFileContentChanges()
-
setResolveFileContentChanges
public ResolveFilesAutoOptions setResolveFileContentChanges(boolean resolveFileContentChanges)
-
isResolveFileDeletions
public boolean isResolveFileDeletions()
-
setResolveFileDeletions
public ResolveFilesAutoOptions setResolveFileDeletions(boolean resolveFileDeletions)
-
isResolveMovedFiles
public boolean isResolveMovedFiles()
-
setResolveMovedFiles
public ResolveFilesAutoOptions setResolveMovedFiles(boolean resolveMovedFiles)
-
isResolveFiletypeChanges
public boolean isResolveFiletypeChanges()
-
setResolveFiletypeChanges
public ResolveFilesAutoOptions setResolveFiletypeChanges(boolean resolveFiletypeChanges)
-
isResolveFileAttributeChanges
public boolean isResolveFileAttributeChanges()
-
setResolveFileAttributeChanges
public ResolveFilesAutoOptions setResolveFileAttributeChanges(boolean resolveFileAttributeChanges)
-
setResolveResolveType
public ResolveFilesAutoOptions setResolveResolveType(java.lang.String type, boolean enable)
-
getChangelistId
public int getChangelistId()
-
setChangelistId
public ResolveFilesAutoOptions setChangelistId(int changelistId)
-
isForceTextualMerge
public boolean isForceTextualMerge()
-
setForceTextualMerge
public ResolveFilesAutoOptions setForceTextualMerge(boolean forceTextualMerge)
-
isIgnoreWhitespaceChanges
public boolean isIgnoreWhitespaceChanges()
-
setIgnoreWhitespaceChanges
public ResolveFilesAutoOptions setIgnoreWhitespaceChanges(boolean ignoreWhitespaceChanges)
-
isIgnoreWhitespace
public boolean isIgnoreWhitespace()
-
setIgnoreWhitespace
public ResolveFilesAutoOptions setIgnoreWhitespace(boolean ignoreWhitespace)
-
isIgnoreLineEndings
public boolean isIgnoreLineEndings()
-
setIgnoreLineEndings
public ResolveFilesAutoOptions setIgnoreLineEndings(boolean ignoreLineEndings)
-
isShowBase
public boolean isShowBase()
-
setShowBase
public ResolveFilesAutoOptions setShowBase(boolean showBase)
-
setResolveStreamSpec
public ResolveFilesAutoOptions setResolveStreamSpec(boolean resolveStreamSpec)
-
-