123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131 |
- using System;
- using System.Collections;
- using System.Collections.Generic;
- using Codice.Client.BaseCommands;
- using Codice.Client.BaseCommands.Acl;
- using Codice.Client.BaseCommands.BranchExplorer.ExplorerTree;
- using Codice.Client.BaseCommands.BranchExplorer.Layout;
- using Codice.Client.Commands;
- using Codice.Client.Commands.CheckIn;
- using Codice.Client.Commands.Tree;
- using Codice.Client.Commands.WkTree;
- using Codice.Client.Commands.Xlinks;
- using Codice.Client.Common;
- using Codice.Client.Common.GameUI;
- using Codice.Client.Common.Xlinks;
- using Codice.Client.GameUI.Update;
- using Codice.Client.IssueTracker;
- using Codice.CM.Common;
- using Codice.CM.Common.Merge;
- using Codice.CM.Common.Replication;
- using Codice.CM.Common.Serialization;
- using Codice.CM.Common.Tree;
- using Codice.CM.WorkspaceServer.Tree.GameUI;
- using Codice.Utils;
- using GluonGui.WorkspaceWindow.Views.WorkspaceExplorer.Explorer;
- using PlasticGui;
- using PlasticGui.SwitcherWindow.Workspaces;
- using PlasticGui.WorkspaceWindow.BranchExplorer;
- using PlasticGui.WorkspaceWindow.Diff;
- namespace Unity.PlasticSCM.Tests.Editor.Mock
- {
- internal class PlasticApiMock : IPlasticAPI
- {
- internal void SetupGetWorkspaceTreeNode(string path, WorkspaceTreeNode wkTreeNode)
- {
- mWorkspaceTreeNodes.Add(path, wkTreeNode);
- }
- internal void SetupGetWorkingBranch(BranchInfo workingBranch)
- {
- mWorkingBranch = workingBranch;
- }
- WkAddResult IPlasticAPI.Add(string[] paths, AddOptions options, out IList checkouts)
- {
- throw new NotImplementedException();
- }
- void IPlasticAPI.AddLockRule(RepositorySpec repSpec, string newRule, bool bDryRun)
- {
- throw new NotImplementedException();
- }
- void IPlasticAPI.ApplyLabelToWorkspace(WorkspaceInfo wkInfo, RepositorySpec repSpec, MarkerInfo labelInfo)
- {
- throw new NotImplementedException();
- }
- DiffInfo IPlasticAPI.BuildDiffInfoForDiffWithPrevious(string revspec2, string symbolicName2, string defaultPath2, string fileExt, WorkspaceInfo currentWk)
- {
- throw new NotImplementedException();
- }
- OutOfDateItems IPlasticAPI.CalculateOutOfDateItems(WorkspaceInfo wkInfo)
- {
- throw new NotImplementedException();
- }
- EnumRevisionType IPlasticAPI.ChangeRevisionType(string path, EnumRevisionType type)
- {
- throw new NotImplementedException();
- }
- bool IPlasticAPI.CheckAttributeExists(RepositorySpec repSpec, string attributeName)
- {
- throw new NotImplementedException();
- }
- bool IPlasticAPI.CheckBranchExists(RepositorySpec repSpec, BranchInfo brInfo)
- {
- throw new NotImplementedException();
- }
- void IPlasticAPI.CheckCredentials(string server, SEIDWorkingMode mode, string user, string password)
- {
- throw new NotImplementedException();
- }
- bool IPlasticAPI.CheckLabelExists(RepositorySpec repSpec, MarkerInfo mkInfo)
- {
- throw new NotImplementedException();
- }
- void IPlasticAPI.Checkout(string[] paths)
- {
- throw new NotImplementedException();
- }
- void IPlasticAPI.Checkout(string[] paths, CheckoutModifiers options)
- {
- throw new NotImplementedException();
- }
- bool IPlasticAPI.CheckRepositoryExists(string repServer, string repName)
- {
- throw new NotImplementedException();
- }
- bool IPlasticAPI.CheckServerConnection(string repServer)
- {
- throw new NotImplementedException();
- }
- AttributeInfo IPlasticAPI.CreateAttribute(RepositorySpec repSpec, string attributeName, string attributeComment)
- {
- throw new NotImplementedException();
- }
- ICheckinOperation IPlasticAPI.CreateCheckInOperation()
- {
- throw new NotImplementedException();
- }
- BranchInfo IPlasticAPI.CreateChildBranch(WorkspaceInfo wkInfo, BranchInfo branchInfo, string title)
- {
- throw new NotImplementedException();
- }
- BranchInfo IPlasticAPI.CreateChildBranch(RepositorySpec repSpec, BranchInfo parentBranchInfo, string name, string comment)
- {
- throw new NotImplementedException();
- }
- BranchInfo IPlasticAPI.CreateChildBranchFromChangeset(RepositorySpec repSpec, BranchInfo parentBranchInfo, long changeset, string name)
- {
- throw new NotImplementedException();
- }
- BranchInfo IPlasticAPI.CreateChildBranchFromChangeset(RepositorySpec repSpec, BranchInfo parentBranchInfo, long changeset, string name, string comment)
- {
- throw new NotImplementedException();
- }
- void IPlasticAPI.CreateComment(RepositorySpec repSpec, long reviewId, CodeReviewCommentInfo comment)
- {
- throw new NotImplementedException();
- }
- RepositoryInfo IPlasticAPI.CreateRepository(string repServer, string repName)
- {
- throw new NotImplementedException();
- }
- ReviewInfo IPlasticAPI.CreateReview(RepositorySpec repSpec, ReviewInfo reviewInfo)
- {
- throw new NotImplementedException();
- }
- WorkspaceInfo IPlasticAPI.CreateWorkspace(string wkPath, string wkName, string repName)
- {
- throw new NotImplementedException();
- }
- void IPlasticAPI.DeleteAttributeFromObject(RepositorySpec repSpec, AttributeRealizationInfo attribute)
- {
- throw new NotImplementedException();
- }
- void IPlasticAPI.DeleteBranch(WorkspaceInfo wkInfo, RepositorySpec repSpec, BranchInfo branchInfo)
- {
- throw new NotImplementedException();
- }
- bool IPlasticAPI.DeleteChangeset(RepositorySpec repSpec, ChangesetInfo changesetInfo)
- {
- throw new NotImplementedException();
- }
- void IPlasticAPI.DeleteComment(RepositorySpec repSpec, long commentId)
- {
- throw new NotImplementedException();
- }
- void IPlasticAPI.DeleteControlled(string path, DeleteModifiers options)
- {
- throw new NotImplementedException();
- }
- void IPlasticAPI.DeleteLabel(RepositorySpec repSpec, MarkerInfo labelInfo)
- {
- throw new NotImplementedException();
- }
- void IPlasticAPI.DeleteReview(RepositorySpec repSpec, ReviewInfo reviewInfo)
- {
- throw new NotImplementedException();
- }
- IList IPlasticAPI.DoGetAllRepositories(string server, bool bFilterDeleted)
- {
- throw new NotImplementedException();
- }
- IList IPlasticAPI.FindAttributeTypes(RepositorySpec repSpec)
- {
- throw new NotImplementedException();
- }
- HashSet<Guid> IPlasticAPI.FindGuids(RepositorySpec repSpec, WorkspaceInfo wkInfo, string condition, ObjectType objectType)
- {
- throw new NotImplementedException();
- }
- QueryResult IPlasticAPI.FindQuery(WorkspaceInfo wkInfo, string query)
- {
- throw new NotImplementedException();
- }
- QueryResult IPlasticAPI.FindQuery(RepositoryInfo repInfo, string query)
- {
- throw new NotImplementedException();
- }
- QueryResult IPlasticAPI.FindQuery(RepositorySpec repSpec, string query)
- {
- throw new NotImplementedException();
- }
- DiffInfo IPlasticAPI.GetAddedDiffInfo(WorkspaceInfo wkInfo, MountPoint mount, DiffViewEntry entry, WorkspaceInfo currentWk)
- {
- throw new NotImplementedException();
- }
- IList IPlasticAPI.GetAllRepositories(bool bFilterDeleted)
- {
- throw new NotImplementedException();
- }
- IList IPlasticAPI.GetAllRepositories(string server, bool bFilterDeleted)
- {
- throw new NotImplementedException();
- }
- IList IPlasticAPI.GetAllRepositories(string server, bool bFilterDeleted, ServerProfile profile)
- {
- throw new NotImplementedException();
- }
- ServerProfile[] PlasticGui.IPlasticAPI.GetPersistentProfiles()
- {
- throw new NotImplementedException();
- }
- void PlasticGui.IPlasticAPI.EditProfile(ServerProfile serverProfile)
- {
- throw new NotImplementedException();
- }
- void PlasticGui.IPlasticAPI.RenameProfile(ServerProfile serverProfile, string userName)
- {
- throw new NotImplementedException();
- }
- List<WorkspaceGuiEntry> IPlasticAPI.GetAllWorkspaces()
- {
- throw new NotImplementedException();
- }
- WorkspaceInfo[] IPlasticAPI.GetAllWorkspacesArray()
- {
- throw new NotImplementedException();
- }
- List<AnnotatedLine> IPlasticAPI.GetAnnotations(RepositorySpec repSpec, RevisionInfo revInfo, string localPath, string comparisonMethod, string encoding)
- {
- throw new NotImplementedException();
- }
- AttributeInfo IPlasticAPI.GetAttribute(string server, RepId repId, string attributeName)
- {
- throw new NotImplementedException();
- }
- long IPlasticAPI.GetAttributeIdForRepository(RepositorySpec repSpec, string attributeName)
- {
- throw new NotImplementedException();
- }
- AttributeRealizationInfo[] IPlasticAPI.GetAttributeRealizations(RepositorySpec repSpec, long objId)
- {
- throw new NotImplementedException();
- }
- void IPlasticAPI.EditAttributeComment(RepositoryInfo repInfo, string attributeSpec, string newComment)
- {
- throw new NotImplementedException();
- }
- void IPlasticAPI.RenameAttribute(RepositoryInfo repInfo, long attId, string newName)
- {
- throw new NotImplementedException();
- }
- void IPlasticAPI.DeleteAttribute(RepositoryInfo repInfo, long attId)
- {
- throw new NotImplementedException();
- }
- List<ClientDiff> IPlasticAPI.GetBranchDifferences(RepositorySpec repSpec, BranchInfo brInfo)
- {
- throw new NotImplementedException();
- }
- BrExLayout IPlasticAPI.GetBranchExplorerLayout(WorkspaceInfo wkInfo, RepositorySpec repSpec, FilterCollection filters, DisplayOptions options, out BrExTree explorerTree)
- {
- throw new NotImplementedException();
- }
- BrExLayout IPlasticAPI.GetBranchExplorerLayout(WorkspaceInfo wkInfo, RepositoryExplainMergeData explainMergeData, DisplayOptions displayOptions, out BrExTree explorerTree)
- {
- throw new NotImplementedException();
- }
- BrExLayout IPlasticAPI.GetBranchExplorerLayout(RepositorySpec repSpec, BrExTree explorerTree, DisplayOptions options)
- {
- throw new NotImplementedException();
- }
- BranchInfo IPlasticAPI.GetBranchInfo(RepositorySpec repSpec, string fullBranchName)
- {
- throw new NotImplementedException();
- }
- BranchInfo IPlasticAPI.GetBranchInfo(RepositorySpec repSpec, Guid brGuid)
- {
- throw new NotImplementedException();
- }
- BranchInfo IPlasticAPI.GetBranchInfo(RepositoryInfo repInfo, long brId)
- {
- throw new NotImplementedException();
- }
- List<BranchInfo> IPlasticAPI.GetBranchInfos(RepositorySpec repSpec, List<long> ids)
- {
- throw new NotImplementedException();
- }
- List<BranchInfo> IPlasticAPI.GetBranchInfos(RepositoryInfo repInfo, List<long> ids)
- {
- throw new NotImplementedException();
- }
- Difference IPlasticAPI.GetChangedForMovedDifference(Difference diff)
- {
- throw new NotImplementedException();
- }
- TreeChangedNode IPlasticAPI.GetChangedNodeForPath(WorkspaceInfo wkInfo, string path)
- {
- throw new NotImplementedException();
- }
- IList<ChangeInfo> IPlasticAPI.GetChanges(WorkspaceInfo wkInfo, List<string> basePaths, WorkspaceStatusOptions options)
- {
- throw new NotImplementedException();
- }
- WorkspaceStatusResult IPlasticAPI.GetChanges(
- WorkspaceInfo wkInfo, WorkspaceStatusOptions options, MovedMatchingOptions matchingOptions)
- {
- throw new NotImplementedException();
- }
- List<ClientDiff> IPlasticAPI.GetChangesetDifferences(RepositorySpec repSpec, ChangesetInfo csetInfo)
- {
- throw new NotImplementedException();
- }
- List<ClientDiff> IPlasticAPI.GetChangesetDifferences(MountPointWithPath mount, ChangesetInfo csetInfo)
- {
- throw new NotImplementedException();
- }
- Guid IPlasticAPI.GetChangesetGuid(RepositorySpec repSpec, long changesetId)
- {
- throw new NotImplementedException();
- }
- ChangesetInfo IPlasticAPI.GetChangesetInfo(RepositorySpec repSpec, Guid csetGuid)
- {
- throw new NotImplementedException();
- }
- List<ChangesetInfo> IPlasticAPI.GetChangesetInfos(RepositorySpec repSpec, List<long> csetIds)
- {
- throw new NotImplementedException();
- }
- ChangesetInfo IPlasticAPI.GetChangesetInfoFromId(WorkspaceInfo wkInfo, long csId)
- {
- throw new NotImplementedException();
- }
- ChangesetInfo IPlasticAPI.GetChangesetInfoFromId(RepositorySpec repSpec, long csId)
- {
- throw new NotImplementedException();
- }
- ChangesetInfo IPlasticAPI.GetChangesetInfoFromId(RepositoryInfo repInfo, long csId)
- {
- throw new NotImplementedException();
- }
- List<ClientDiff> IPlasticAPI.GetChangesetsDifferences(RepositorySpec repSpec, ChangesetInfo sourceCsetInfo, ChangesetInfo destinationCsetInfo)
- {
- throw new NotImplementedException();
- }
- long IPlasticAPI.GetCurrentChangesetOnWorkspace(WorkspaceInfo wkInfo)
- {
- throw new NotImplementedException();
- }
- DiffInfo IPlasticAPI.GetDiffInfo(string revSpec, string symbolicName, string defaultPath, string fileExtension, WorkspaceInfo currrentWk)
- {
- throw new NotImplementedException();
- }
- DiffInfo IPlasticAPI.GetDiffInfo(string revspec1, string revspec2, string symbolicName1, string symbolicName2, string defaultPath1, string defaultPath2, string fileExtension, WorkspaceInfo currrentWk)
- {
- throw new NotImplementedException();
- }
- DiffInfo IPlasticAPI.GetDiffInfo(WorkspaceInfo wkInfo, ChangeInfo changeInfo)
- {
- throw new NotImplementedException();
- }
- DiffInfo IPlasticAPI.GetDiffInfo(WorkspaceInfo wkInfo, ChangeInfo changeInfo, ChangeInfo changedForMoved)
- {
- throw new NotImplementedException();
- }
- DiffInfo IPlasticAPI.GetDiffInfo(WorkspaceInfo wkInfo, MountPoint mount, Difference diff)
- {
- throw new NotImplementedException();
- }
- DiffInfo IPlasticAPI.GetDiffInfo(WorkspaceInfo wkInfo, RepositorySpec repSpec, RevisionInfo leftRev, RevisionInfo rightRev, string leftDefaultPath, string rightDefaultPath)
- {
- throw new NotImplementedException();
- }
- List<RepObjectInfo> IPlasticAPI.GetHistory(RepositorySpec repSpec, long itemId)
- {
- throw new NotImplementedException();
- }
- HumanReadableXlinkDataGenerator IPlasticAPI.GetHumanReadableXlinkDataGenerator()
- {
- throw new NotImplementedException();
- }
- IDictionary<MountPoint, PendingMergeLink> IPlasticAPI.GetInProgressMergeLinks(WorkspaceInfo wkInfo)
- {
- throw new NotImplementedException();
- }
- LicenseData IPlasticAPI.GetLicenseData(string server)
- {
- throw new NotImplementedException();
- }
- long IPlasticAPI.GetLoadedChangeset(WorkspaceInfo wkInfo)
- {
- throw new NotImplementedException();
- }
- long IPlasticAPI.GetLoadedRevisionId(WorkspaceInfo wkInfo, RepositorySpec repSpec, long itemId)
- {
- throw new NotImplementedException();
- }
- LockRule IPlasticAPI.GetLockRule(RepositorySpec repSpec)
- {
- throw new NotImplementedException();
- }
- BranchInfo IPlasticAPI.GetMainBranch(RepositorySpec repSpec)
- {
- throw new NotImplementedException();
- }
- MarkerInfo IPlasticAPI.GetMarkerInfo(RepositorySpec repSpec, long markerId)
- {
- throw new NotImplementedException();
- }
- MarkerInfo IPlasticAPI.GetMarkerInfoByName(RepositorySpec repSpec, string markerName)
- {
- throw new NotImplementedException();
- }
- Guid IPlasticAPI.GetObjectGuid(RepositorySpec repSpec, long objectId)
- {
- throw new NotImplementedException();
- }
- long IPlasticAPI.GetParentChangeset(RepositorySpec repSpec, long changesetId)
- {
- throw new NotImplementedException();
- }
- RevisionInfo IPlasticAPI.GetParentRevision(RepositorySpec repSpec, RevisionInfo revInfo)
- {
- throw new NotImplementedException();
- }
- IDictionary<MountPoint, IList<PendingMergeLink>> IPlasticAPI.GetPendingMergeLinks(WorkspaceInfo wkInfo)
- {
- throw new NotImplementedException();
- }
- IList<ReplicationSourceInfo> IPlasticAPI.GetReplicationSources(RepositorySpec repSpec, RepObjectInfo repObject)
- {
- throw new NotImplementedException();
- }
- RepositoryInfo IPlasticAPI.GetRepositoryInfo(RepositorySpec repSpec)
- {
- throw new NotImplementedException();
- }
- RepositorySpec IPlasticAPI.GetRepositorySpec(WorkspaceInfo wkInfo)
- {
- throw new NotImplementedException();
- }
- IList IPlasticAPI.GetReviewComments(RepositorySpec repSpec, long reviewId)
- {
- throw new NotImplementedException();
- }
- IList IPlasticAPI.GetReviewCommentsFromReviewIds(RepositorySpec repSpec, List<long> reviewIds)
- {
- throw new NotImplementedException();
- }
- RevisionInfo IPlasticAPI.GetRevisionAtChangeset(RepositorySpec repSpec, long itemId, long changesetId)
- {
- throw new NotImplementedException();
- }
- ChildItem[] IPlasticAPI.GetRevisionChildren(RepositorySpec repSpec, RevisionInfo revInfo)
- {
- throw new NotImplementedException();
- }
- void IPlasticAPI.GetRevisionDataToFile(RepositorySpec repSpec, HistoryRevision revision, string tmpFile)
- {
- throw new NotImplementedException();
- }
- void IPlasticAPI.GetRevisionDataToFile(RepositorySpec repSpec, RevisionInfo revInfo, string tmpFile)
- {
- throw new NotImplementedException();
- }
- RevisionInfo IPlasticAPI.GetRevisionInfo(RepositorySpec repSpec, long revisionId)
- {
- throw new NotImplementedException();
- }
- RepositoryInfo IPlasticAPI.GetRootRepositoryInfo(string clientPath)
- {
- throw new NotImplementedException();
- }
- SEID IPlasticAPI.GetSeidFromName(string server, string name, bool isGroup)
- {
- throw new NotImplementedException();
- }
- SelectorInformation IPlasticAPI.GetSelectorUserInformation(WorkspaceInfo wkInfo)
- {
- throw new NotImplementedException();
- }
- WebadminAddress IPlasticAPI.GetServerWebPortAndProtocol(string server)
- {
- throw new NotImplementedException();
- }
- ReplicationLogEntryInfo[] IPlasticAPI.GetSortedReplicationLogsFromBranch(RepositorySpec repSpec, BranchInfo branchInfo)
- {
- throw new NotImplementedException();
- }
- ReplicationLogEntryInfo[] IPlasticAPI.GetSortedReplicationLogsFromRepository(RepositorySpec repSpec)
- {
- throw new NotImplementedException();
- }
- TreeContent IPlasticAPI.GetTreeContent(RepositorySpec repSpec, string path, long changesetId, bool bRecurse)
- {
- throw new NotImplementedException();
- }
- TreeContent IPlasticAPI.GetTreeContent(RepositorySpec repSpec, string path, string branchName, bool bRecurse)
- {
- throw new NotImplementedException();
- }
- string IPlasticAPI.GetUserName(string server, SEID owner)
- {
- throw new NotImplementedException();
- }
- IList IPlasticAPI.GetValuesForAttribute(string server, RepId repId, string attributeName)
- {
- throw new NotImplementedException();
- }
- BranchInfo IPlasticAPI.GetWorkingBranch(WorkspaceInfo wkInfo)
- {
- return mWorkingBranch;
- }
- BranchInfo IPlasticAPI.GetCheckoutBranch(WorkspaceInfo wkInfo)
- {
- return mWorkingBranch;
- }
- long IPlasticAPI.GetWorkingChangeset(RepositorySpec repSpec, WorkspaceInfo wkInfo)
- {
- throw new NotImplementedException();
- }
- SEIDWorkingMode IPlasticAPI.GetWorkingMode(string server)
- {
- throw new NotImplementedException();
- }
- WorkspaceInfo IPlasticAPI.GetWorkspaceFromPath(string wkPath)
- {
- throw new NotImplementedException();
- }
- WorkspaceInfo IPlasticAPI.GetWorkspaceFromId(Guid guid)
- {
- throw new NotImplementedException();
- }
- WorkspaceTreeNode IPlasticAPI.GetWorkspaceTree(WorkspaceInfo wkInfo, string path)
- {
- throw new NotImplementedException();
- }
- WorkspaceTreeNode IPlasticAPI.GetWorkspaceTreeNode(string path)
- {
- if (!mWorkspaceTreeNodes.ContainsKey(path))
- return null;
- return mWorkspaceTreeNodes[path];
- }
- List<ClientXlink> IPlasticAPI.GetXLinksInChangesetTree(RepositorySpec repSpec, long changesetId)
- {
- throw new NotImplementedException();
- }
- string IPlasticAPI.GetXlinkTypeString(Xlink xlink)
- {
- throw new NotImplementedException();
- }
- bool IPlasticAPI.HasWorkspaceMergeChanges(WorkspaceInfo wkInfo)
- {
- throw new NotImplementedException();
- }
- bool IPlasticAPI.IsBranchEmpty(RepositorySpec repSpec, long branchId)
- {
- throw new NotImplementedException();
- }
- bool IPlasticAPI.IsCopied(string path, out bool bReplaced)
- {
- throw new NotImplementedException();
- }
- bool IPlasticAPI.IsFsReaderWatchLimitReached(WorkspaceInfo wkInfo)
- {
- throw new NotImplementedException();
- }
- bool IPlasticAPI.IsIncomingChangesInProgress(WorkspaceInfo wkInfo)
- {
- throw new NotImplementedException();
- }
- bool IPlasticAPI.IsMovedChangedDifference(Difference diff)
- {
- throw new NotImplementedException();
- }
- bool IPlasticAPI.IsOnChangedTree(WorkspaceInfo wkInfo, string path)
- {
- throw new NotImplementedException();
- }
- bool IPlasticAPI.IsReadOnlyFilesPreferenceEnabled()
- {
- throw new NotImplementedException();
- }
- bool IPlasticAPI.IsStackTraceEnabled()
- {
- throw new NotImplementedException();
- }
- bool IPlasticAPI.IsWorkingChangesetDeleted(WorkspaceInfo wkInfo)
- {
- throw new NotImplementedException();
- }
- void IPlasticAPI.LaunchDifferences(DiffInfo diffInfo, IToolLauncher xDiffLauncher)
- {
- throw new NotImplementedException();
- }
- List<PlasticTask> IPlasticAPI.LoadTasks(IPlasticIssueTrackerExtension extension, List<string> taskIds)
- {
- throw new NotImplementedException();
- }
- void IPlasticAPI.MarkTaskAsOpen(IPlasticIssueTrackerExtension extension, List<string> taskIds, string assignee)
- {
- throw new NotImplementedException();
- }
- BranchInfo IPlasticAPI.MkBranch(RepositorySpec repSpec, string fullBranchName, long changeset, string comment)
- {
- throw new NotImplementedException();
- }
- MarkerInfo IPlasticAPI.MkLabel(RepositorySpec repSpec, string labelName, long changeset, string comment)
- {
- throw new NotImplementedException();
- }
- IList IPlasticAPI.MkLabelInAllXlinkedRepositories(IList<ClientXlink> targetXlinks, string labelName, string comment)
- {
- throw new NotImplementedException();
- }
- void IPlasticAPI.Move(string source, string destination, MoveModifiers options)
- {
- throw new NotImplementedException();
- }
- void IPlasticAPI.MoveChangeset(RepositorySpec repSpec, ChangesetInfo csetInfo, BranchInfo dstBrInfo)
- {
- throw new NotImplementedException();
- }
- List<ErrorMessage> IPlasticAPI.PartialUpdate(WorkspaceInfo wkInfo, List<string> paths)
- {
- throw new NotImplementedException();
- }
- void IPlasticAPI.PerformUpdateMerge(WorkspaceInfo wkInfo, MergeSource mergeSource, MergeResult mergeResult, ICmdNotifier notifier)
- {
- throw new NotImplementedException();
- }
- void IPlasticAPI.RemoveRepository(RepositoryInfo repInfo)
- {
- throw new NotImplementedException();
- }
- void IPlasticAPI.RemoveWorkspace(WorkspaceInfo wkInfo)
- {
- throw new NotImplementedException();
- }
- BranchInfo IPlasticAPI.RenameBranch(WorkspaceInfo wkInfo, RepositorySpec repSpec, BranchInfo branchInfo, string newName)
- {
- throw new NotImplementedException();
- }
- MarkerInfo IPlasticAPI.RenameLabel(WorkspaceInfo wkInfo, RepositorySpec repSpec, MarkerInfo labelInfo, string newName)
- {
- throw new NotImplementedException();
- }
- RepositoryInfo IPlasticAPI.RenameRepository(RepositoryInfo repInfo, string newName)
- {
- throw new NotImplementedException();
- }
- WorkspaceInfo IPlasticAPI.RenameWorkspace(WorkspaceInfo wkInfo, string newName)
- {
- throw new NotImplementedException();
- }
- void IPlasticAPI.RevertToClientDiffRevisions(WorkspaceInfo wkInfo, ClientDiffInfo clientDiff, WorkspaceTreeNode wkNode, string workspacePath)
- {
- throw new NotImplementedException();
- }
- void IPlasticAPI.RevertToThisRevision(WorkspaceInfo wkInfo, RepositorySpec repSpec, HistoryRevision revision, string path)
- {
- throw new NotImplementedException();
- }
- List<ChangeInfo> IPlasticAPI.SearchMatches(WorkspaceInfo wkInfo, string path, double allowedChangesPerUnit)
- {
- throw new NotImplementedException();
- }
- IList IPlasticAPI.SelectiveUpdate(WorkspaceInfo wkInfo, UpdateFlags flags, IList dirs, IList files)
- {
- throw new NotImplementedException();
- }
- void IPlasticAPI.SetAttribute(RepositorySpec repSpec, long attId, long objId, string attributeValue)
- {
- throw new NotImplementedException();
- }
- void IPlasticAPI.SetReadonlyFilesPreference(bool value)
- {
- throw new NotImplementedException();
- }
- void IPlasticAPI.SetSelector(WorkspaceInfo wkInfo, string selector, SetSelectorFlags flags)
- {
- throw new NotImplementedException();
- }
- CheckinResult IPlasticAPI.ShelveChanges(string[] paths, string comment)
- {
- throw new NotImplementedException();
- }
- IUpdateResult IPlasticAPI.SwitchToBranch(WorkspaceInfo wkInfo, RepositorySpec repSpec, BranchInfo brInfo, IContinueWithPendingChangesQuestioner questioner, ICmdNotifier notifier)
- {
- throw new NotImplementedException();
- }
- void IPlasticAPI.SwitchToBranch(WorkspaceInfo wkInfo, BranchInfo branchInfo)
- {
- throw new NotImplementedException();
- }
- IUpdateResult IPlasticAPI.SwitchToChangeset(WorkspaceInfo wkInfo, RepositorySpec repSpec, BranchInfo brInfo, ChangesetInfo csInfo, IContinueWithPendingChangesQuestioner questioner, ICmdNotifier notifier)
- {
- throw new NotImplementedException();
- }
- IUpdateResult IPlasticAPI.SwitchToLabel(WorkspaceInfo wkInfo, RepositorySpec repSpec, MarkerInfo labelInfo, IContinueWithPendingChangesQuestioner questioner, ICmdNotifier notifier)
- {
- throw new NotImplementedException();
- }
- string IPlasticAPI.SwitchWorkspaceSelector(WorkspaceInfo wkInfo, SwitchToSelectorEntry[] entries)
- {
- throw new NotImplementedException();
- }
- void IPlasticAPI.UndeleteClientDiff(ClientDiffInfo diff, string restorePath)
- {
- throw new NotImplementedException();
- }
- void IPlasticAPI.UndeleteRepository(RepositoryInfo repInfo)
- {
- throw new NotImplementedException();
- }
- void IPlasticAPI.UndeleteRevision(RepositorySpec repSpec, RemovedRealizationInfo removed, string restorePath)
- {
- throw new NotImplementedException();
- }
- void IPlasticAPI.UndoCheckout(WorkspaceInfo wkInfo, string[] paths, ICmdNotifier notifier)
- {
- throw new NotImplementedException();
- }
- void IPlasticAPI.UndoCheckout(WorkspaceInfo wkInfo, IList<string> paths, IList<string> skippedLocks, bool bHandleDeletedChangeset)
- {
- throw new NotImplementedException();
- }
- void IPlasticAPI.UndoCheckout(WorkspaceInfo wkInfo, string[] paths, ICmdNotifier notifier, UndoCheckoutModifiers flags)
- {
- throw new NotImplementedException();
- }
- void IPlasticAPI.UndoShelvedChanges(WorkspaceInfo wkInfo, string[] paths)
- {
- throw new NotImplementedException();
- }
- List<string> IPlasticAPI.UndoUnchanged(WorkspaceInfo wkInfo, List<string> paths)
- {
- throw new NotImplementedException();
- }
- IUpdateResult IPlasticAPI.Update(string path, UpdateFlags flags, IRunMergeDuringUpdate mergeController, ICmdNotifier notifier)
- {
- throw new NotImplementedException();
- }
- void IPlasticAPI.UpdateBranchHead(RepositorySpec repSpec, long branchId, long changesetId)
- {
- throw new NotImplementedException();
- }
- void IPlasticAPI.UpdateCheckoutBranch(WorkspaceInfo wkInfo, BranchInfo branchInfo)
- {
- throw new NotImplementedException();
- }
- ReviewCommentInfo IPlasticAPI.UpdateComment(RepositorySpec repSpec, ReviewCommentInfo editedComment)
- {
- throw new NotImplementedException();
- }
- void IPlasticAPI.UpdateObjectComment(RepositorySpec repSpec, RepObjectInfo repObject, string newComment)
- {
- throw new NotImplementedException();
- }
- ReviewInfo IPlasticAPI.UpdateReview(RepositorySpec repSpec, ReviewInfo reviewInfo)
- {
- throw new NotImplementedException();
- }
- IUpdateResult IPlasticAPI.UpdateToLatest(WorkspaceInfo wkInfo, UpdateFlags flags, IRunMergeDuringUpdate mergeController, ICmdNotifier notifier)
- {
- throw new NotImplementedException();
- }
- SecurityMember[] IPlasticAPI.GetUsers(string server, string serverSideFilter)
- {
- throw new NotImplementedException();
- }
- SecurityMember[] IPlasticAPI.GetGroups(string server, string serverSideFilter)
- {
- throw new NotImplementedException();
- }
- SecurityMember[] IPlasticAPI.GetSecurityMembers(string server, string serverSideFilter)
- {
- throw new NotImplementedException();
- }
- SecurityMember IPlasticAPI.GetSecurityMemberFromName(string server, string name)
- {
- throw new NotImplementedException();
- }
- WorkspaceInfo IPlasticAPI.CreateDynamicWorkspace(string wkPath, string wkName, string repName)
- {
- throw new NotImplementedException();
- }
- RepositoryServerInfo IPlasticAPI.GetRepositoryServerInfo(string server)
- {
- throw new NotImplementedException();
- }
- void IPlasticAPI.UpdateSecuredPath(RepositorySpec repSpec, SecuredPathInfo secPathInfo, long[] newBrIds, AclParams aclParams)
- {
- throw new NotImplementedException();
- }
- SecuredPathInfo IPlasticAPI.CreateSecuredPath(RepositorySpec repSpec, string path, string tag, long[] brIds, AclParams aclParams)
- {
- throw new NotImplementedException();
- }
- void IPlasticAPI.DeleteSecuredPath(RepositorySpec repSpec, SecuredPathInfo secPathInfo)
- {
- throw new NotImplementedException();
- }
- void IPlasticAPI.CalculateAcl(string server, ObjectInfo obj, out AclInfo aclInfo, out AclEntry[] calculatedPermissions, out bool bIsOwner)
- {
- throw new NotImplementedException();
- }
- SEID IPlasticAPI.GetOwner(string server, ObjectInfo obj)
- {
- throw new NotImplementedException();
- }
- IList<SecuredPathInfo> IPlasticAPI.GetSecuredPaths(string server, RepId repId, string path, string tag, LongArray brIds)
- {
- throw new NotImplementedException();
- }
- void IPlasticAPI.SetPermissions(string server, ObjectInfo obj, SEID seid, Permissions granted, Permissions denied, Permissions overrideGranted, Permissions overrideDenied)
- {
- throw new NotImplementedException();
- }
- void IPlasticAPI.RemovePermissions(string server, ObjectInfo obj, SEID seid)
- {
- throw new NotImplementedException();
- }
- IList<SecuredPathInfo> IPlasticAPI.GetAllSecuredPaths(RepositorySpec repSpec)
- {
- throw new NotImplementedException();
- }
- IList<SecuredPathInfo> IPlasticAPI.GetSecuredPaths(RepositorySpec repSpec, string path)
- {
- throw new NotImplementedException();
- }
- void IPlasticAPI.DownloadFileFromPath(List<ConfiguredPath> filePaths, WorkspaceInfo wkInfo, UpdateProgress updateProgress)
- {
- throw new NotImplementedException();
- }
- string IPlasticAPI.BuildWebApiTokenForCloudEditionDefaultUser()
- {
- throw new NotImplementedException();
- }
- string IPlasticAPI.BuildWebApiTokenForCloudEditionForUser(
- string server, SEIDWorkingMode workingMode, string seecurityConfig)
- {
- throw new NotImplementedException();
- }
- void IPlasticAPI.SaveToken(string server, string user, string token)
- {
- throw new NotImplementedException();
- }
- ServerProfile IPlasticAPI.SaveProfile(
- string server, SEIDWorkingMode workingMode, string user, string password)
- {
- throw new NotImplementedException();
- }
-
- void IPlasticAPI.SaveProfile(
- ServerProfile profile)
- {
- throw new NotImplementedException();
- }
-
- void IPlasticAPI.DeleteProfiles(List<Codice.Client.Common.ServerProfile> profiles)
- {
- throw new NotImplementedException();
- }
-
- void IPlasticAPI.SetDefaultProfileForServer(string server, ServerProfile profile)
- {
- throw new NotImplementedException();
- }
- IList<ServerProfile> IPlasticAPI.GetProfilesForServer(string server)
- {
- throw new NotImplementedException();
- }
- SEID IPlasticAPI.GetSeidFromProfile(ServerProfile profile)
- {
- throw new NotImplementedException();
- }
- bool IPlasticAPI.IsAdmin(SEID seid, string server)
- {
- throw new NotImplementedException();
- }
- ReviewInfo IPlasticAPI.GetReview(RepositorySpec repSpec, long reviewId)
- {
- throw new NotImplementedException();
- }
- bool IPlasticAPI.IsGluonWorkspace(WorkspaceInfo wkInfo)
- {
- throw new NotImplementedException();
- }
- void IPlasticAPI.SetAsGluonWorkspace(WorkspaceInfo wkInfo)
- {
- throw new NotImplementedException();
- }
- ConfigurationTreeNode IPlasticAPI.GetConfigurationTree(WorkspaceInfo wkInfo)
- {
- throw new NotImplementedException();
- }
- List<ConfigurationTreeNode> IPlasticAPI.GetConfigurationTreeNodeChildren(
- WorkspaceInfo wkInfo, MountPoint mount, string path, bool bOnlyControlled, FsReader fsReader)
- {
- throw new NotImplementedException();
- }
- ConfigurationTreeNode IPlasticAPI.GetLocalConfigurationTree(WorkspaceInfo wkInfo)
- {
- throw new NotImplementedException();
- }
- StatusLoader.ICalculatedStatus IPlasticAPI.CalculateConfigurationTreeStatus(
- WorkspaceInfo wkInfo, bool bSkipPrivate, FsReader fsReader, CancelToken cancelToken)
- {
- throw new NotImplementedException();
- }
- BranchInfo mWorkingBranch;
- Dictionary<string, WorkspaceTreeNode> mWorkspaceTreeNodes =
- new Dictionary<string, WorkspaceTreeNode>();
- }
- }
|