|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Uses of PendingChange in com.microsoft.tfs.core.clients.versioncontrol |
---|
Methods in com.microsoft.tfs.core.clients.versioncontrol that return PendingChange | |
---|---|
PendingChange[] |
UnshelveResult.changes()
|
PendingChange[] |
ReconcilePendingChangesStatus.getReconcilablePendingChanges()
|
Methods in com.microsoft.tfs.core.clients.versioncontrol with parameters of type PendingChange | |
---|---|
void |
InitiallyDeletedLocalVersionUpdate.updateFrom(PendingChange pendingChange)
|
void |
IPopulatableLocalVersionUpdate.updateFrom(PendingChange pendingChange)
Updates the populatable fields of this IPopulatableLocalVersionUpdate from the data in the provided PendingChange object. |
void |
ClientLocalVersionUpdate.updateFrom(PendingChange pendingChange)
|
Constructors in com.microsoft.tfs.core.clients.versioncontrol with parameters of type PendingChange | |
---|---|
ReconcilePendingChangesStatus(boolean matchedAtLeastOnePendingChange,
PendingChange[] reconcilablePendingChanges)
|
|
UnshelveResult(Shelveset shelveset,
GetStatus status,
PendingChange[] changes,
Conflict[] conflicts)
Creates an UnshelveResult for the given result items. |
Uses of PendingChange in com.microsoft.tfs.core.clients.versioncontrol.events |
---|
Methods in com.microsoft.tfs.core.clients.versioncontrol.events that return PendingChange | |
---|---|
PendingChange[] |
UnshelveShelvesetStartedEvent.getChanges()
|
PendingChange[] |
UnshelveShelvesetCompletedEvent.getChanges()
|
PendingChange[] |
CheckinEvent.getCommittedChanges()
|
PendingChange |
PendingChangeEvent.getPendingChange()
|
PendingChange |
MergingEvent.getPendingChange()
|
PendingChange[] |
ShelveEvent.getShelvedChanges()
|
PendingChange[] |
CheckinEvent.getUndoneChanges()
|
Uses of PendingChange in com.microsoft.tfs.core.clients.versioncontrol.soapextensions |
---|
Methods in com.microsoft.tfs.core.clients.versioncontrol.soapextensions that return PendingChange | |
---|---|
PendingChange[] |
PendingSet.getCandidatePendingChanges()
|
PendingChange[] |
ReconcileResult.getNewPendingChanges()
|
PendingChange[] |
PendingSet.getPendingChanges()
|
PendingChange[] |
Workspace.getPendingChangesWithCandidates(ItemSpec[] itemSpecs,
boolean includeDownloadInfo,
java.util.concurrent.atomic.AtomicReference<PendingChange[]> candidateChanges)
|
PendingChange[] |
Workspace.getPendingChangesWithCandidates(ItemSpec[] itemSpecs,
boolean includeDownloadInfo,
java.util.concurrent.atomic.AtomicReference<PendingChange[]> candidateChanges,
java.lang.String[] itemPropertyFilters)
Gets all of the pending changes and candidate changes. |
PendingChange |
LocalPendingChange.toPendingChange(VersionControlClient sourceControl,
java.lang.String targetLocalItem)
Materializes a LocalPendingChange object as a PendingChange to be returned via the public client object model. |
Methods in com.microsoft.tfs.core.clients.versioncontrol.soapextensions with parameters of type PendingChange | |
---|---|
int |
Workspace.checkIn(PendingChange[] changes,
java.lang.String comment)
|
int |
Workspace.checkIn(PendingChange[] changes,
java.lang.String comment,
CheckinNote checkinNote,
WorkItemCheckinInfo[] associatedWorkItems,
PolicyOverrideInfo policyOverrideInfo)
|
int |
Workspace.checkIn(PendingChange[] changes,
java.lang.String author,
java.lang.String authorDisplayName,
java.lang.String comment,
CheckinNote checkinNote,
WorkItemCheckinInfo[] associatedWorkItems,
PolicyOverrideInfo policyOverrideInfo)
|
int |
Workspace.checkIn(PendingChange[] changes,
java.lang.String author,
java.lang.String authorDisplayName,
java.lang.String comment,
CheckinNote checkinNote,
WorkItemCheckinInfo[] associatedWorkItems,
PolicyOverrideInfo policyOverrideInfo,
CheckinFlags flags)
|
int |
Workspace.checkIn(PendingChange[] changes,
java.lang.String committer,
java.lang.String committerDisplayName,
java.lang.String author,
java.lang.String authorDisplayName,
java.lang.String comment,
CheckinNote checkinNote,
WorkItemCheckinInfo[] associatedWorkItems,
PolicyOverrideInfo policyOverrideInfo,
CheckinFlags flags)
Checkin pending changes in this workspace. |
int |
PendingChangeComparator.compare(PendingChange first,
PendingChange second)
|
int |
PendingChange.compareTo(PendingChange other)
|
CheckinEvaluationResult |
Workspace.evaluateCheckIn(CheckinEvaluationOptions options,
PendingChange[] allChanges,
PendingChange[] changesToCheckin,
java.lang.String comment,
CheckinNote checkinNotes,
WorkItemCheckinInfo[] workItemChanges,
PolicyEvaluator policyEvaluator,
PolicyContext policyContext)
Checks for required checkin notes and evaluates the given changes against defined checkin policies before they are sent to the server for check-in. |
CheckinEvaluationResult |
Workspace.evaluateCheckIn(CheckinEvaluationOptions options,
PendingChange[] allChanges,
PendingChange[] changesToCheckin,
java.lang.String comment,
CheckinNote checkinNotes,
WorkItemCheckinInfo[] workItemChanges,
PolicyEvaluator policyEvaluator,
PolicyContext policyContext)
Checks for required checkin notes and evaluates the given changes against defined checkin policies before they are sent to the server for check-in. |
ReconcilePendingChangesStatus |
Workspace.findReconcilablePendingChangesForChangeset(Changeset changeset,
PendingChange[] pendingChanges)
Finds pending changes in the given array which can be safely reconciled (undone) to match the changes in the given changeset. |
static LocalPendingChange |
LocalPendingChange.fromPendingChange(PendingChange pc)
Creates a LocalPendingChange object from a PendingChange that has come down from the server. |
void |
Workspace.shelve(Shelveset set,
PendingChange[] changesToShelve,
boolean replace,
boolean move)
Send pending changes to the server for storage without being checked in. |
static java.lang.String[] |
PendingChange.toLocalItems(PendingChange[] changes)
Extracts all the non-null local items from an array of pending changes and returns a new array containing them. |
static java.lang.String[] |
PendingChange.toServerItems(PendingChange[] changes)
Extracts all the non-null server items from an array of pending changes and returns a new array containing them. |
java.lang.String |
ChangeType.toUIString(boolean showLock,
PendingChange pendingChange)
|
void |
Workspace.updateLastSavedCheckin(Shelveset shelveset,
PendingChange[] unshelvedChanges)
Updates the last attempted checkin information with the information from the shelveset and ensures that the specified set of pending changes have a checked state set. |
Constructors in com.microsoft.tfs.core.clients.versioncontrol.soapextensions with parameters of type PendingChange | |
---|---|
PendingChange(PendingChange change)
Creates a clone of the given PendingChange . |
|
PendingSet(java.lang.String name,
java.lang.String ownerName,
java.lang.String ownerDisplayName,
OwnershipState ownership,
java.lang.String computer,
PendingSetType type,
PendingChange[] pendingChanges)
|
|
PendingSet(java.lang.String name,
java.lang.String ownerName,
java.lang.String ownerDisplayName,
OwnershipState ownership,
java.lang.String computer,
PendingSetType type,
PendingChange[] pendingChanges,
PendingChange[] candidatePendingChanges)
|
|
PendingSet(java.lang.String name,
java.lang.String ownerName,
java.lang.String ownerDisplayName,
OwnershipState ownership,
java.lang.String computer,
PendingSetType type,
PendingChange[] pendingChanges,
PendingChange[] candidatePendingChanges)
|
Uses of PendingChange in com.microsoft.tfs.core.clients.versioncontrol.specs |
---|
Constructors in com.microsoft.tfs.core.clients.versioncontrol.specs with parameters of type PendingChange | |
---|---|
ItemSpec(PendingChange pendingChange)
Convenience constructor to build an ItemSpec from a
PendingChange . |
Uses of PendingChange in com.microsoft.tfs.core.clients.versioncontrol.workspacecache |
---|
Methods in com.microsoft.tfs.core.clients.versioncontrol.workspacecache with parameters of type PendingChange | |
---|---|
void |
SavedCheckin.mergeShelvesetMetadata(Shelveset shelveset,
PendingChange[] unshelvedChanges)
Reinitialize this SavedCheckin with the metadata contined within the specified shelveset and update the check states with the the specified set of pending changes. |
void |
SavedCheckin.updateCheckinItems(PendingChange[] checkedPendingChanges,
PendingChange[] uncheckedPendingChanges)
Update the saved channel info with the current check states. |
void |
SavedCheckin.updateCheckinItems(PendingChange[] checkedPendingChanges,
PendingChange[] uncheckedPendingChanges)
Update the saved channel info with the current check states. |
Constructors in com.microsoft.tfs.core.clients.versioncontrol.workspacecache with parameters of type PendingChange | |
---|---|
SavedCheckin(java.lang.String comment,
PendingChange[] excludedChanges,
CheckinNote checkinNotes,
WorkItemCheckedInfo[] workItemCheckedInfo,
java.lang.String policyOverrideComment)
|
Uses of PendingChange in com.microsoft.tfs.core.pendingcheckin |
---|
Methods in com.microsoft.tfs.core.pendingcheckin that return PendingChange | |
---|---|
PendingChange[] |
StandardPendingCheckinPendingChanges.getAllPendingChanges()
|
PendingChange[] |
PendingCheckinPendingChanges.getAllPendingChanges()
|
PendingChange[] |
StandardPendingCheckinPendingChanges.getCheckedPendingChanges()
|
PendingChange[] |
PendingCheckinPendingChanges.getCheckedPendingChanges()
|
Methods in com.microsoft.tfs.core.pendingcheckin with parameters of type PendingChange | |
---|---|
boolean |
AffectedTeamProjects.set(PendingChange[] changes)
Sets the affected team projects from the server paths of the specified pending changes. |
void |
StandardPendingCheckinPendingChanges.setAllPendingChanges(PendingChange[] changes)
Sets all pending changes for this checkin. |
void |
PendingCheckinPendingChanges.setAllPendingChanges(PendingChange[] changes)
Sets the colleciton of all pending changes. |
void |
StandardPendingCheckinPendingChanges.setCheckedPendingChanges(PendingChange[] changes)
Sets the pending changes that are currently "checked" in the user interface for this checkin. |
void |
PendingCheckinPendingChanges.setCheckedPendingChanges(PendingChange[] changes)
Sets the pending changes that are currently "checked" in the user interface for this checkin. |
Constructors in com.microsoft.tfs.core.pendingcheckin with parameters of type PendingChange | |
---|---|
AffectedTeamProjects(PendingChange[] changes)
|
|
StandardPendingCheckin(Workspace workspace,
PendingChange[] allChanges,
PendingChange[] checkedChanges,
java.lang.String comment,
CheckinNote checkinNotes,
WorkItemCheckinInfo[] checkedWorkItems,
PolicyEvaluator evaluator)
Creates a StandardPendingCheckin using the user-supplied
evaluator and the loader it was already configured with. |
|
StandardPendingCheckin(Workspace workspace,
PendingChange[] allChanges,
PendingChange[] checkedChanges,
java.lang.String comment,
CheckinNote checkinNotes,
WorkItemCheckinInfo[] checkedWorkItems,
PolicyEvaluator evaluator)
Creates a StandardPendingCheckin using the user-supplied
evaluator and the loader it was already configured with. |
|
StandardPendingCheckinPendingChanges(Workspace workspace,
PendingChange[] allChanges,
PendingChange[] checkedChanges,
AffectedTeamProjects affectedTeamProjects,
java.lang.String comment)
The AffectedTeamProjects object given will be modified. |
|
StandardPendingCheckinPendingChanges(Workspace workspace,
PendingChange[] allChanges,
PendingChange[] checkedChanges,
AffectedTeamProjects affectedTeamProjects,
java.lang.String comment)
The AffectedTeamProjects object given will be modified. |
Uses of PendingChange in com.microsoft.tfs.core.pendingcheckin.filters |
---|
Methods in com.microsoft.tfs.core.pendingcheckin.filters that return PendingChange | |
---|---|
PendingChange[] |
FilterPendingCheckinPendingChanges.getAllPendingChanges()
|
PendingChange[] |
FilterPendingCheckinPendingChanges.getCheckedPendingChanges()
|
Methods in com.microsoft.tfs.core.pendingcheckin.filters with parameters of type PendingChange | |
---|---|
boolean |
ScopeFilter.passes(PendingChange change)
Tests whether the given pending change passes the implementation's filter test. |
boolean |
PendingChangeFilter.passes(PendingChange change)
Tests whether the given pending change passes the implementation's filter test. |
boolean |
AllPassFilter.passes(PendingChange change)
Tests whether the given pending change passes the implementation's filter test. |
void |
FilterPendingCheckinPendingChanges.setAllPendingChanges(PendingChange[] changes)
Sets the colleciton of all pending changes. |
void |
FilterPendingCheckinPendingChanges.setCheckedPendingChanges(PendingChange[] changes)
Sets the pending changes that are currently "checked" in the user interface for this checkin. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |