org.apache.tools.ant.taskdefs.optional.perforce
public class P4Fstat extends P4Base
<project name="p4fstat" default="p4fstat"
basedir="C:\dev\gnu">
<target name="p4fstat" >
<p4fstat showfilter="all">
<fileset dir="depot" includes="**\/*"/>
</p4fstat>
</target>
</project>
UNKNOWN: category="scm"
| Method Summary | |
|---|---|
| void | addFileset(FileSet set)
Adds a fileset to be examined by p4fstat. |
| void | execute()
Executes the p4fstat task. |
| int | getLengthOfTask()
Return the number of files seen. |
| void | setChangelist(int changelist)
Sets optionally a change list number. |
| void | setShowFilter(String filter)
Sets the filter that one wants applied.
|
Parameters: set the fileset to add.
Throws: BuildException if no files are specified.
Returns: the number of files seen.
Parameters: changelist change list that one wants information about.
Throws: BuildException if the change list number is negative.
| Option | Meaning |
|---|---|
| all | all files under Perforce control or not |
| existing | only files under Perforce control |
| non-existing | only files not under Perforce control or not |
Parameters: filter should be one of all|existing|non-existing.