|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use IFileSpec | |
---|---|
com.perforce.p4java.client | Provides interfaces for accessing and manipulating Perforce client workspaces and associated objects. |
com.perforce.p4java.core | Provides interfaces and classes for defining and accessing Perforce objects such as jobs, changelists, etc., and, through the file sub-package, Perforce files. |
com.perforce.p4java.core.file | Provides interfaces and classes for defining and accessing Perforce depot and workspace files. |
com.perforce.p4java.impl.generic.core | Provides standard implementation classes for the com.perforce.p4java.core interfaces. |
com.perforce.p4java.impl.generic.core.file | Provides standard implementation classes for the com.perforce.p4java.core.file interfaces. |
com.perforce.p4java.impl.mapbased.client | |
com.perforce.p4java.server | Provides interfaces and classes for accessing Perforce SCM servers and associated server-level services. |
Uses of IFileSpec in com.perforce.p4java.client |
---|
Methods in com.perforce.p4java.client that return IFileSpec | |
---|---|
IFileSpec |
IClient.resolveFile(IFileSpec targetFile,
java.io.InputStream sourceStream)
Resolve a file integration by using the contents of the sourceStream InputStream as the resolve result. |
Methods in com.perforce.p4java.client that return types with arguments of type IFileSpec | |
---|---|
java.util.List<IFileSpec> |
IClient.addFiles(java.util.List<IFileSpec> fileSpecs,
boolean noUpdate,
int changeListId,
java.lang.String fileType,
boolean useWildcards)
Open one or more Perforce client workspace files for adding to the Perforce server. |
java.util.List<IFileSpec> |
IClient.deleteFiles(java.util.List<IFileSpec> fileSpecs,
int changeListId,
boolean noUpdate)
Open a Perforce client workspace file for deletion from a Perforce depot. |
java.util.List<IFileSpec> |
IClient.editFiles(java.util.List<IFileSpec> fileSpecs,
boolean noUpdate,
boolean bypassClientUpdate,
int changeListId,
java.lang.String fileType)
Open one or more Perforce client workspace files for editing. |
java.util.List<IFileSpec> |
IClient.getDiffFiles(java.util.List<IFileSpec> fileSpecs,
int maxFiles,
boolean diffNonTextFiles,
boolean openedDifferentMissing,
boolean openedForIntegrate,
boolean unopenedMissing,
boolean unopenedDifferent,
boolean unopenedWithStatus,
boolean openedSame)
Return a list of files that differ in some (arbitrarily complex) way from depot. |
java.util.List<IFileSpec> |
IClient.haveList(java.util.List<IFileSpec> fileSpecs)
Return a list of all Perforce-managed files and versions that the Perforce server believes this Perforce client workspace has as of the latest sync. |
java.util.List<IFileSpec> |
IClient.integrateFiles(int changeListId,
boolean showActionsOnly,
IntegrationOptions integOpts,
java.lang.String branchSpec,
IFileSpec fromFile,
IFileSpec toFile)
Integrate ("merge") from one Perforce filespec to another. |
java.util.List<IFileSpec> |
IClient.labelSync(java.util.List<IFileSpec> fileSpecs,
java.lang.String labelName,
boolean noUpdate,
boolean addFiles,
boolean deleteFiles)
Perform a label sync operation for this client. |
java.util.List<IFileSpec> |
IClient.lockFiles(java.util.List<IFileSpec> fileSpecs,
int changeListId)
Lock an opened file against changelist submission. |
java.util.List<IFileSpec> |
IClient.openedFiles(java.util.List<IFileSpec> fileSpecs,
int maxFiles,
int changeListId)
If one or more Perforce file specs is passed-in, return the opened / locked status of each file (if known) within an IFileSpec object; otherwise return a list of all files known to be open for this Perforce client workspace. |
java.util.List<IFileSpec> |
IClient.reopenFiles(java.util.List<IFileSpec> fileSpecs,
int changeListId,
java.lang.String fileType)
Reopen Perforce files in a new changelist. |
java.util.List<IFileSpec> |
IClient.resolvedFiles(java.util.List<IFileSpec> fileSpecs,
boolean showBaseRevision)
Return a list of files resolved but not submitted for this client. |
java.util.List<IFileSpec> |
IClient.resolveFilesAuto(java.util.List<IFileSpec> fileSpecs,
boolean safeMerge,
boolean acceptTheirs,
boolean acceptYours,
boolean showActionsOnly,
boolean forceResolve)
Automatically resolve the results of a previousPerforce file integration. |
java.util.List<IFileSpec> |
IClient.revertFiles(java.util.List<IFileSpec> fileSpecs,
boolean noUpdate,
int changeListId,
boolean revertOnlyUnchanged,
boolean noRefresh)
Revert an open Perforce client workspace file back to the revision previously synced from the Perforce depot, discarding any pending changelists or integrations that have been made so far. |
java.util.List<IFileSpec> |
IClient.shelveChangelist(IChangelist list)
Shelve the file(s) in a pending changelist. |
java.util.List<IFileSpec> |
IClient.shelveChangelist(int changelistId,
java.util.List<IFileSpec> fileSpecs,
boolean forceUpdate,
boolean replace,
boolean discard)
Update/replace/delete shelved file(s) from a pending changelist. |
java.util.List<IFileSpec> |
IClient.sync(java.util.List<IFileSpec> fileSpecs,
boolean forceUpdate,
boolean noUpdate,
boolean clientBypass,
boolean serverBypass)
Sync a Perforce client workspace against the Perforce server. |
java.util.List<IFileSpec> |
IClient.unlockFiles(java.util.List<IFileSpec> fileSpecs,
int changeListId,
boolean force)
Release locked files but leave them open. |
java.util.List<IFileSpec> |
IClient.unshelveChangelist(int shelveChangelistId,
java.util.List<IFileSpec> fileSpecs,
int clientChangelistId,
boolean forceOverwrite,
boolean previewOnly)
Unshelve file(s) from a shelved changelist |
java.util.List<IFileSpec> |
IClient.where(java.util.List<IFileSpec> fileSpecs)
For each of the passed-in file specs, show how the named file maps through the client view. |
Methods in com.perforce.p4java.client with parameters of type IFileSpec | |
---|---|
java.util.List<IFileSpec> |
IClient.integrateFiles(int changeListId,
boolean showActionsOnly,
IntegrationOptions integOpts,
java.lang.String branchSpec,
IFileSpec fromFile,
IFileSpec toFile)
Integrate ("merge") from one Perforce filespec to another. |
IFileSpec |
IClient.resolveFile(IFileSpec targetFile,
java.io.InputStream sourceStream)
Resolve a file integration by using the contents of the sourceStream InputStream as the resolve result. |
Method parameters in com.perforce.p4java.client with type arguments of type IFileSpec | |
---|---|
java.util.List<IFileSpec> |
IClient.addFiles(java.util.List<IFileSpec> fileSpecs,
boolean noUpdate,
int changeListId,
java.lang.String fileType,
boolean useWildcards)
Open one or more Perforce client workspace files for adding to the Perforce server. |
java.util.List<IFileSpec> |
IClient.deleteFiles(java.util.List<IFileSpec> fileSpecs,
int changeListId,
boolean noUpdate)
Open a Perforce client workspace file for deletion from a Perforce depot. |
java.util.List<IFileSpec> |
IClient.editFiles(java.util.List<IFileSpec> fileSpecs,
boolean noUpdate,
boolean bypassClientUpdate,
int changeListId,
java.lang.String fileType)
Open one or more Perforce client workspace files for editing. |
java.util.List<IFileSpec> |
IClient.getDiffFiles(java.util.List<IFileSpec> fileSpecs,
int maxFiles,
boolean diffNonTextFiles,
boolean openedDifferentMissing,
boolean openedForIntegrate,
boolean unopenedMissing,
boolean unopenedDifferent,
boolean unopenedWithStatus,
boolean openedSame)
Return a list of files that differ in some (arbitrarily complex) way from depot. |
java.util.List<IFileSpec> |
IClient.haveList(java.util.List<IFileSpec> fileSpecs)
Return a list of all Perforce-managed files and versions that the Perforce server believes this Perforce client workspace has as of the latest sync. |
java.util.List<IFileSpec> |
IClient.labelSync(java.util.List<IFileSpec> fileSpecs,
java.lang.String labelName,
boolean noUpdate,
boolean addFiles,
boolean deleteFiles)
Perform a label sync operation for this client. |
java.util.List<IFileSpec> |
IClient.lockFiles(java.util.List<IFileSpec> fileSpecs,
int changeListId)
Lock an opened file against changelist submission. |
java.util.List<IFileSpec> |
IClient.openedFiles(java.util.List<IFileSpec> fileSpecs,
int maxFiles,
int changeListId)
If one or more Perforce file specs is passed-in, return the opened / locked status of each file (if known) within an IFileSpec object; otherwise return a list of all files known to be open for this Perforce client workspace. |
java.util.List<IFileSpec> |
IClient.reopenFiles(java.util.List<IFileSpec> fileSpecs,
int changeListId,
java.lang.String fileType)
Reopen Perforce files in a new changelist. |
java.util.List<IFileSpec> |
IClient.resolvedFiles(java.util.List<IFileSpec> fileSpecs,
boolean showBaseRevision)
Return a list of files resolved but not submitted for this client. |
java.util.List<IFileSpec> |
IClient.resolveFilesAuto(java.util.List<IFileSpec> fileSpecs,
boolean safeMerge,
boolean acceptTheirs,
boolean acceptYours,
boolean showActionsOnly,
boolean forceResolve)
Automatically resolve the results of a previousPerforce file integration. |
java.util.List<IFileSpec> |
IClient.revertFiles(java.util.List<IFileSpec> fileSpecs,
boolean noUpdate,
int changeListId,
boolean revertOnlyUnchanged,
boolean noRefresh)
Revert an open Perforce client workspace file back to the revision previously synced from the Perforce depot, discarding any pending changelists or integrations that have been made so far. |
java.util.List<IFileSpec> |
IClient.shelveChangelist(int changelistId,
java.util.List<IFileSpec> fileSpecs,
boolean forceUpdate,
boolean replace,
boolean discard)
Update/replace/delete shelved file(s) from a pending changelist. |
java.util.List<IFileSpec> |
IClient.sync(java.util.List<IFileSpec> fileSpecs,
boolean forceUpdate,
boolean noUpdate,
boolean clientBypass,
boolean serverBypass)
Sync a Perforce client workspace against the Perforce server. |
java.util.List<IFileSpec> |
IClient.unlockFiles(java.util.List<IFileSpec> fileSpecs,
int changeListId,
boolean force)
Release locked files but leave them open. |
java.util.List<IFileSpec> |
IClient.unshelveChangelist(int shelveChangelistId,
java.util.List<IFileSpec> fileSpecs,
int clientChangelistId,
boolean forceOverwrite,
boolean previewOnly)
Unshelve file(s) from a shelved changelist |
java.util.List<IFileSpec> |
IClient.where(java.util.List<IFileSpec> fileSpecs)
For each of the passed-in file specs, show how the named file maps through the client view. |
Uses of IFileSpec in com.perforce.p4java.core |
---|
Methods in com.perforce.p4java.core that return types with arguments of type IFileSpec | |
---|---|
java.util.List<IFileSpec> |
IChangelist.getFiles(boolean refresh)
Get the list of files associated with this changelist, optionally refreshing the list from the server. |
java.util.List<IFileSpec> |
IChangelist.submit(boolean reOpen)
Submit this changelist. |
java.util.List<IFileSpec> |
IChangelist.submit(boolean reOpen,
java.util.List<java.lang.String> jobIds,
java.lang.String jobStatus)
Submit this changelist and associate it with the passed-in jobs. |
Uses of IFileSpec in com.perforce.p4java.core.file |
---|
Subinterfaces of IFileSpec in com.perforce.p4java.core.file | |
---|---|
interface |
IExtendedFileSpec
Extends the basic IFileSpec with methods and fields for use with the Perforce server statFiles() and other specialized methods. |
Methods in com.perforce.p4java.core.file that return types with arguments of type IFileSpec | |
---|---|
static java.util.List<IFileSpec> |
FileSpecBuilder.getInvalidFileSpecs(java.util.List<IFileSpec> fileSpecs)
Given a list of file specs, return a list of the invalid file specs in that list. |
java.util.Map<IFileSpec,java.util.List<IFileRevisionData>> |
IFileSpec.getRevisionHistory(int maxRevs,
boolean contentHistory,
boolean includeInherited,
boolean longOutput,
boolean truncatedLongOutput)
Get the revision history of this Perforce file. |
static java.util.List<IFileSpec> |
FileSpecBuilder.getValidFileSpecs(java.util.List<IFileSpec> fileSpecs)
Given a list of file specs, return a list of the valid file specs in that list. |
static java.util.List<IFileSpec> |
FileSpecBuilder.makeFileSpecList(java.lang.String path)
Create a list containing a single file spec created from the specified path. |
static java.util.List<IFileSpec> |
FileSpecBuilder.makeFileSpecList(java.lang.String[] pathArray)
Given an array of file paths (which might include revision or label specs, etc.), return a corresponding list of file specs. |
java.util.List<IFileSpec> |
IFileSpec.move(int changelistId,
boolean listOnly,
boolean noClientMove,
java.lang.String fileType,
IFileSpec toFile)
Move this file if it's already opened for edit or add (the fromFile) to the destination file (the toFile). |
Methods in com.perforce.p4java.core.file with parameters of type IFileSpec | |
---|---|
java.util.List<IFileSpec> |
IFileSpec.move(int changelistId,
boolean listOnly,
boolean noClientMove,
java.lang.String fileType,
IFileSpec toFile)
Move this file if it's already opened for edit or add (the fromFile) to the destination file (the toFile). |
Method parameters in com.perforce.p4java.core.file with type arguments of type IFileSpec | |
---|---|
static java.util.List<IFileSpec> |
FileSpecBuilder.getInvalidFileSpecs(java.util.List<IFileSpec> fileSpecs)
Given a list of file specs, return a list of the invalid file specs in that list. |
static java.util.List<IFileSpec> |
FileSpecBuilder.getValidFileSpecs(java.util.List<IFileSpec> fileSpecs)
Given a list of file specs, return a list of the valid file specs in that list. |
Uses of IFileSpec in com.perforce.p4java.impl.generic.core |
---|
Methods in com.perforce.p4java.impl.generic.core that return types with arguments of type IFileSpec | |
---|---|
java.util.List<IFileSpec> |
Changelist.getFiles(boolean refresh)
|
java.util.List<IFileSpec> |
Changelist.getFiles(boolean refresh,
boolean bypassServer)
|
java.util.List<IFileSpec> |
Changelist.getFileSpecs()
|
java.util.List<IFileSpec> |
Changelist.submit(boolean reOpen)
|
java.util.List<IFileSpec> |
Changelist.submit(boolean reOpen,
java.util.List<java.lang.String> jobIds,
java.lang.String jobStatus)
|
Uses of IFileSpec in com.perforce.p4java.impl.generic.core.file |
---|
Classes in com.perforce.p4java.impl.generic.core.file that implement IFileSpec | |
---|---|
class |
ExtendedFileSpec
Useful generic implementation class for the IExtendedFileSpec interface. |
class |
FileSpec
Simple generic default implementation class for the IFileSpec interface. |
Methods in com.perforce.p4java.impl.generic.core.file that return types with arguments of type IFileSpec | |
---|---|
java.util.Map<IFileSpec,java.util.List<IFileRevisionData>> |
FileSpec.getRevisionHistory(int maxRevs,
boolean contentHistory,
boolean includeInherited,
boolean longOutput,
boolean truncatedLongOutput)
|
java.util.List<IFileSpec> |
FileSpec.move(int changelistId,
boolean listOnly,
boolean noClientMove,
java.lang.String fileType,
IFileSpec toFile)
|
Methods in com.perforce.p4java.impl.generic.core.file with parameters of type IFileSpec | |
---|---|
java.lang.String |
FilePath.annotate(IFileSpec fileSpec)
|
java.util.List<IFileSpec> |
FileSpec.move(int changelistId,
boolean listOnly,
boolean noClientMove,
java.lang.String fileType,
IFileSpec toFile)
|
Constructors in com.perforce.p4java.impl.generic.core.file with parameters of type IFileSpec | |
---|---|
PathAnnotations(IFileSpec fileSpec)
Construct a PathAnnotations object for a specific file spec. |
Uses of IFileSpec in com.perforce.p4java.impl.mapbased.client |
---|
Methods in com.perforce.p4java.impl.mapbased.client that return IFileSpec | |
---|---|
IFileSpec |
Client.resolveFile(IFileSpec targetFile,
java.io.InputStream sourceStream)
|
Methods in com.perforce.p4java.impl.mapbased.client that return types with arguments of type IFileSpec | |
---|---|
java.util.List<IFileSpec> |
Client.addFiles(java.util.List<IFileSpec> fileSpecs,
boolean noUpdate,
int changeListId,
java.lang.String fileType,
boolean useWildcards)
|
java.util.List<IFileSpec> |
Client.deleteFiles(java.util.List<IFileSpec> fileSpecs,
int changeListId,
boolean noUpdate)
|
java.util.List<IFileSpec> |
Client.editFiles(java.util.List<IFileSpec> fileSpecs,
boolean noUpdate,
boolean bypassClientUpdate,
int changeListId,
java.lang.String fileType)
|
java.util.List<IFileSpec> |
Client.getDiffFiles(java.util.List<IFileSpec> fileSpecs,
int maxFiles,
boolean diffNonTextFiles,
boolean openedDifferentMissing,
boolean openedForIntegrate,
boolean unopenedMissing,
boolean unopenedDifferent,
boolean unopenedWithStatus,
boolean openedSame)
|
java.util.List<IFileSpec> |
Client.haveList(java.util.List<IFileSpec> fileSpecs)
|
java.util.List<IFileSpec> |
Client.integrateFiles(int changeListId,
boolean showActionsOnly,
IntegrationOptions integOpts,
java.lang.String branchSpec,
IFileSpec fromFile,
IFileSpec toFile)
|
java.util.List<IFileSpec> |
Client.labelSync(java.util.List<IFileSpec> fileSpecs,
java.lang.String labelName,
boolean noUpdate,
boolean addFiles,
boolean deleteFiles)
|
java.util.List<IFileSpec> |
Client.lockFiles(java.util.List<IFileSpec> fileSpecs,
int changeListId)
|
java.util.List<IFileSpec> |
Client.openedFiles(java.util.List<IFileSpec> fileSpecs,
int maxFiles,
int changeListId)
|
java.util.List<IFileSpec> |
Client.reopenFiles(java.util.List<IFileSpec> fileSpecs,
int changeListId,
java.lang.String fileType)
|
java.util.List<IFileSpec> |
Client.resolvedFiles(java.util.List<IFileSpec> fileSpecs,
boolean showBaseRevision)
|
java.util.List<IFileSpec> |
Client.resolveFilesAuto(java.util.List<IFileSpec> fileSpecs,
boolean safeMerge,
boolean acceptTheirs,
boolean acceptYours,
boolean showActionsOnly,
boolean forceResolve)
|
java.util.List<IFileSpec> |
Client.revertFiles(java.util.List<IFileSpec> fileSpecs,
boolean noUpdate,
int changeListId,
boolean revertOnlyUnchanged,
boolean noRefresh)
|
java.util.List<IFileSpec> |
Client.shelveChangelist(IChangelist list)
|
java.util.List<IFileSpec> |
Client.shelveChangelist(int changelistId,
java.util.List<IFileSpec> fileSpecs,
boolean forceUpdate,
boolean replace,
boolean discard)
|
java.util.List<IFileSpec> |
Client.sync(java.util.List<IFileSpec> fileSpecs,
boolean forceUpdate,
boolean noUpdate,
boolean clientBypass,
boolean serverBypass)
|
java.util.List<IFileSpec> |
Client.unlockFiles(java.util.List<IFileSpec> fileSpecs,
int changeListId,
boolean force)
|
java.util.List<IFileSpec> |
Client.unshelveChangelist(int shelveChangelistId,
java.util.List<IFileSpec> fileSpecs,
int clientChangelistId,
boolean forceOverwrite,
boolean previewOnly)
|
java.util.List<IFileSpec> |
Client.where(java.util.List<IFileSpec> fileSpecs)
|
Methods in com.perforce.p4java.impl.mapbased.client with parameters of type IFileSpec | |
---|---|
java.util.List<IFileSpec> |
Client.integrateFiles(int changeListId,
boolean showActionsOnly,
IntegrationOptions integOpts,
java.lang.String branchSpec,
IFileSpec fromFile,
IFileSpec toFile)
|
IFileSpec |
Client.resolveFile(IFileSpec targetFile,
java.io.InputStream sourceStream)
|
Method parameters in com.perforce.p4java.impl.mapbased.client with type arguments of type IFileSpec | |
---|---|
java.util.List<IFileSpec> |
Client.addFiles(java.util.List<IFileSpec> fileSpecs,
boolean noUpdate,
int changeListId,
java.lang.String fileType,
boolean useWildcards)
|
java.util.List<IFileSpec> |
Client.deleteFiles(java.util.List<IFileSpec> fileSpecs,
int changeListId,
boolean noUpdate)
|
java.util.List<IFileSpec> |
Client.editFiles(java.util.List<IFileSpec> fileSpecs,
boolean noUpdate,
boolean bypassClientUpdate,
int changeListId,
java.lang.String fileType)
|
java.util.List<IFileSpec> |
Client.getDiffFiles(java.util.List<IFileSpec> fileSpecs,
int maxFiles,
boolean diffNonTextFiles,
boolean openedDifferentMissing,
boolean openedForIntegrate,
boolean unopenedMissing,
boolean unopenedDifferent,
boolean unopenedWithStatus,
boolean openedSame)
|
java.util.List<IFileSpec> |
Client.haveList(java.util.List<IFileSpec> fileSpecs)
|
java.util.List<IFileSpec> |
Client.labelSync(java.util.List<IFileSpec> fileSpecs,
java.lang.String labelName,
boolean noUpdate,
boolean addFiles,
boolean deleteFiles)
|
java.util.List<IFileSpec> |
Client.lockFiles(java.util.List<IFileSpec> fileSpecs,
int changeListId)
|
java.util.List<IFileSpec> |
Client.openedFiles(java.util.List<IFileSpec> fileSpecs,
int maxFiles,
int changeListId)
|
java.util.List<IFileSpec> |
Client.reopenFiles(java.util.List<IFileSpec> fileSpecs,
int changeListId,
java.lang.String fileType)
|
java.util.List<IFileSpec> |
Client.resolvedFiles(java.util.List<IFileSpec> fileSpecs,
boolean showBaseRevision)
|
java.util.List<IFileSpec> |
Client.resolveFilesAuto(java.util.List<IFileSpec> fileSpecs,
boolean safeMerge,
boolean acceptTheirs,
boolean acceptYours,
boolean showActionsOnly,
boolean forceResolve)
|
java.util.List<IFileSpec> |
Client.revertFiles(java.util.List<IFileSpec> fileSpecs,
boolean noUpdate,
int changeListId,
boolean revertOnlyUnchanged,
boolean noRefresh)
|
java.util.List<IFileSpec> |
Client.shelveChangelist(int changelistId,
java.util.List<IFileSpec> fileSpecs,
boolean forceUpdate,
boolean replace,
boolean discard)
|
java.util.List<IFileSpec> |
Client.sync(java.util.List<IFileSpec> fileSpecs,
boolean forceUpdate,
boolean noUpdate,
boolean clientBypass,
boolean serverBypass)
|
java.util.List<IFileSpec> |
Client.unlockFiles(java.util.List<IFileSpec> fileSpecs,
int changeListId,
boolean force)
|
java.util.List<IFileSpec> |
Client.unshelveChangelist(int shelveChangelistId,
java.util.List<IFileSpec> fileSpecs,
int clientChangelistId,
boolean forceOverwrite,
boolean previewOnly)
|
java.util.List<IFileSpec> |
Client.where(java.util.List<IFileSpec> fileSpecs)
|
Uses of IFileSpec in com.perforce.p4java.server |
---|
Methods in com.perforce.p4java.server that return types with arguments of type IFileSpec | |
---|---|
java.util.List<IFileSpec> |
IServer.getChangelistFiles(int id)
Get a list of the Perforce depot files associated with a Perforce changelist. |
java.util.List<IFileSpec> |
IServer.getDepotFiles(java.util.List<IFileSpec> fileSpecs,
boolean allRevs)
List all Perforce depot files known to the Perforce server that conform to the passed-in wild-card file specification(s). |
java.util.List<IFileSpec> |
IServer.getDirectories(java.util.List<IFileSpec> fileSpecs,
boolean clientOnly,
boolean deletedOnly,
boolean haveListOnly)
List any directories matching the passed-in file specifications. |
java.util.List<IFileSpec> |
IServer.getOpenedFiles(java.util.List<IFileSpec> fileSpecs,
boolean allClients,
java.lang.String clientName,
int maxFiles,
int changeListId)
If one or more Perforce file specs is passed-in, return the opened / locked status of each file (if known) within an IFileSpec object; otherwise return a list of all files known to be open for this Perforce client workspace. |
java.util.Map<IFileSpec,java.util.List<IFileRevisionData>> |
IServer.getRevisionHistory(java.util.List<IFileSpec> fileSpecs,
int maxRevs,
boolean contentHistory,
boolean includeInherited,
boolean longOutput,
boolean truncatedLongOutput)
Get the revision history data for one or more Perforce files. |
java.util.List<IFileSpec> |
IServer.getSubmittedIntegrations(java.util.List<IFileSpec> fileSpecs,
java.lang.String branchSpec,
boolean reverseMappings)
Get a list of submitted integrations for the passed-in filespecs. |
java.util.List<IFileSpec> |
IServer.moveFile(int changelistId,
boolean listOnly,
boolean noClientMove,
java.lang.String fileType,
IFileSpec fromFile,
IFileSpec toFile)
Move a file already opened for edit or add (the fromFile) to the destination file (the toFile). |
java.util.List<IFileSpec> |
IServer.tagFiles(java.util.List<IFileSpec> fileSpecs,
java.lang.String labelName,
boolean listOnly,
boolean delete)
Tag files with a Perforce label. |
Methods in com.perforce.p4java.server with parameters of type IFileSpec | |
---|---|
java.util.List<IFileSpec> |
IServer.moveFile(int changelistId,
boolean listOnly,
boolean noClientMove,
java.lang.String fileType,
IFileSpec fromFile,
IFileSpec toFile)
Move a file already opened for edit or add (the fromFile) to the destination file (the toFile). |
Method parameters in com.perforce.p4java.server with type arguments of type IFileSpec | |
---|---|
java.util.List<IChangelistSummary> |
IServer.getChangelists(int maxMostRecent,
java.util.List<IFileSpec> fileSpecs,
java.lang.String clientName,
java.lang.String userName,
boolean includeIntegrated,
boolean submittedOnly,
boolean pendingOnly,
boolean longDesc)
An omnibus method to get a list of Perforce changelists from a server using zero or more qualifiers (note that convenience methods also exists, especially on the IClient interface). |
java.util.List<IChangelistSummary> |
IServer.getChangelists(int maxMostRecent,
java.util.List<IFileSpec> fileSpecs,
java.lang.String clientName,
java.lang.String userName,
boolean includeIntegrated,
IChangelist.Type type,
boolean longDesc)
An omnibus method to get a list of Perforce changelists from a server using zero or more qualifiers (note that convenience methods also exists, especially on the IClient interface). |
java.util.List<IFileSpec> |
IServer.getDepotFiles(java.util.List<IFileSpec> fileSpecs,
boolean allRevs)
List all Perforce depot files known to the Perforce server that conform to the passed-in wild-card file specification(s). |
java.util.List<IFileSpec> |
IServer.getDirectories(java.util.List<IFileSpec> fileSpecs,
boolean clientOnly,
boolean deletedOnly,
boolean haveListOnly)
List any directories matching the passed-in file specifications. |
java.util.List<IExtendedFileSpec> |
IServer.getExtendedFiles(java.util.List<IFileSpec> fileSpecs,
int maxFiles,
int sinceChangelist,
int affectedByChangelist,
FileStatOutputOptions outputOptions,
FileStatAncilliaryOptions ancilliaryOptions)
Return a list of everything Perforce knows about a possibly very large set of Perforce files. |
java.util.List<IFileAnnotation> |
IServer.getFileAnnotations(java.util.List<IFileSpec> fileSpecs,
DiffType wsOpts,
boolean allResults,
boolean useChangeNumbers,
boolean followBranches)
Get a list of revision annotations for the specified files. |
java.io.InputStream |
IServer.getFileContents(java.util.List<IFileSpec> fileSpecs,
boolean allrevs,
boolean noHeaderLine)
Return an InputStream onto the contents of one or more revisions of one or more Perforce depot file contents. |
java.util.List<IFix> |
IServer.getFixList(java.util.List<IFileSpec> fileSpecs,
int changeListId,
java.lang.String jobId,
boolean includeIntegrations,
int maxFixes)
Return a list of all Perforce jobs with fix records associated with them, along with the changelist number of the fix. |
java.util.List<IJob> |
IServer.getJobs(java.util.List<IFileSpec> fileSpecs,
int maxJobs,
boolean longDescriptions,
boolean reverseOrder,
boolean includeIntegrated,
java.lang.String jobView)
Return a list of Perforce jobs. |
java.util.List<ILabelSummary> |
IServer.getLabels(java.lang.String user,
int maxLabels,
java.lang.String nameFilter,
java.util.List<IFileSpec> fileList)
Get a list of Perforce labels, optionally tied to a specific set of files. |
java.util.List<IFileSpec> |
IServer.getOpenedFiles(java.util.List<IFileSpec> fileSpecs,
boolean allClients,
java.lang.String clientName,
int maxFiles,
int changeListId)
If one or more Perforce file specs is passed-in, return the opened / locked status of each file (if known) within an IFileSpec object; otherwise return a list of all files known to be open for this Perforce client workspace. |
java.util.List<IProtectionEntry> |
IServer.getProtectionEntries(boolean allUsers,
java.lang.String hostName,
java.lang.String userName,
java.lang.String groupName,
java.util.List<IFileSpec> fileList)
Get a list of Perforce protection entries for the passed-in arguments. |
java.util.List<IUserSummary> |
IServer.getReviews(int changelistId,
java.util.List<IFileSpec> fileSpecs)
Get a list of all users who have subscribed to review the named files, the files in the numbered changelist, or all files by default. |
java.util.Map<IFileSpec,java.util.List<IFileRevisionData>> |
IServer.getRevisionHistory(java.util.List<IFileSpec> fileSpecs,
int maxRevs,
boolean contentHistory,
boolean includeInherited,
boolean longOutput,
boolean truncatedLongOutput)
Get the revision history data for one or more Perforce files. |
java.util.List<IFileSpec> |
IServer.getSubmittedIntegrations(java.util.List<IFileSpec> fileSpecs,
java.lang.String branchSpec,
boolean reverseMappings)
Get a list of submitted integrations for the passed-in filespecs. |
java.util.List<IFileSpec> |
IServer.tagFiles(java.util.List<IFileSpec> fileSpecs,
java.lang.String labelName,
boolean listOnly,
boolean delete)
Tag files with a Perforce label. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |