Class GraphShowRefOptions
java.lang.Object
com.perforce.p4java.option.Options
com.perforce.p4java.option.server.GraphShowRefOptions
-
Field Summary
FieldsFields inherited from class com.perforce.p4java.option.Options
immutable, optionList -
Constructor Summary
ConstructorsConstructorDescriptionGraphShowRefOptions(String repo, int maxValue, boolean a, String user, String type) -
Method Summary
Modifier and TypeMethodDescriptionprocessOptions(IServer server) Turn this (specific) options object into a list of strings to be sent to the Perforce server as options for a specific command.setA(boolean a) Sets the optional option value for option -asetMaxValue(int maxValue) Sets the optional option value for option -m {max}Sets the mandatory option value for option -n {repo}Sets the optional option value for option -t {type}Sets the optional option value for option -u {user}Methods inherited from class com.perforce.p4java.option.Options
getOptions, isImmutable, processFields, setImmutable, setOptions
-
Field Details
-
SHOWREF_COMMAND_PART
- See Also:
-
OPTIONS_SPECS
- See Also:
-
-
Constructor Details
-
GraphShowRefOptions
public GraphShowRefOptions() -
GraphShowRefOptions
-
-
Method Details
-
processOptions
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:
- list of options strings associated with this Option
- Throws:
OptionsException- on error
-
setRepo
Sets the mandatory option value for option -n {repo}- Parameters:
repo- - The repo against which the rev-list command is issued- Returns:
- GraphShowRefOptions with repo filter set
-
setMaxValue
Sets the optional option value for option -m {max}- Parameters:
maxValue- - The maximum number of items to be returned by the graph rev-list command- Returns:
- GraphShowRefOptions with max value filter set
-
setA
Sets the optional option value for option -a- Parameters:
a- - true or false- Returns:
- GraphShowRefOptions with 'A' filter set
-
setUser
Sets the optional option value for option -u {user}- Parameters:
user- - user to filter with- Returns:
- GraphShowRefOptions with use filter set
-
setType
Sets the optional option value for option -t {type}- Parameters:
type- - options type- Returns:
- GraphShowRefOptions with type filter set
-