~ubuntu-branches/ubuntu/trusty/monodevelop/trusty-proposed

« back to all changes in this revision

Viewing changes to src/addins/VersionControl/MonoDevelop.VersionControl/MonoDevelop.VersionControl/UnknownRepository.cs

  • Committer: Package Import Robot
  • Author(s): Jo Shields
  • Date: 2013-05-12 09:46:03 UTC
  • mto: This revision was merged to the branch mainline in revision 29.
  • Revision ID: package-import@ubuntu.com-20130512094603-mad323bzcxvmcam0
Tags: upstream-4.0.5+dfsg
ImportĀ upstreamĀ versionĀ 4.0.5+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
                        return null;
24
24
                }
25
25
 
26
 
                public override string GetTextAtRevision (FilePath repositoryPath, Revision revision)
 
26
                protected override string OnGetTextAtRevision (FilePath repositoryPath, Revision revision)
27
27
                {
28
28
                        return null;
29
29
                }
30
30
 
31
 
                public override Revision[] GetHistory (FilePath sourcefile, Revision since)
 
31
                protected override Revision[] OnGetHistory (FilePath sourcefile, Revision since)
32
32
                {
33
33
                        return null;
34
34
                }
45
45
                }
46
46
 
47
47
 
48
 
                public override Repository Publish (string serverPath, FilePath localPath, FilePath[] FilePath, string message, IProgressMonitor monitor)
 
48
                protected override Repository OnPublish (string serverPath, FilePath localPath, FilePath[] FilePath, string message, IProgressMonitor monitor)
49
49
                {
50
50
                        return null;
51
51
                }
52
52
 
53
 
                public override void Update (FilePath[] paths, bool recurse, IProgressMonitor monitor)
 
53
                protected override void OnUpdate (FilePath[] paths, bool recurse, IProgressMonitor monitor)
54
54
                {
55
55
                }
56
56
                
57
 
                public override void Commit (ChangeSet changeSet, IProgressMonitor monitor)
58
 
                {
59
 
                }
60
 
 
61
 
                public override void Checkout (FilePath path, Revision rev, bool recurse, IProgressMonitor monitor)
62
 
                {
63
 
                }
64
 
 
65
 
                public override void Revert (FilePath[] localPaths, bool recurse, IProgressMonitor monitor)
66
 
                {
67
 
                }
68
 
 
69
 
                public override void RevertRevision (FilePath localPath, Revision revision, IProgressMonitor monitor)
70
 
                {
71
 
                }
72
 
 
73
 
                public override void RevertToRevision (FilePath localPath, Revision revision, IProgressMonitor monitor)
74
 
                {
75
 
                }
76
 
 
77
 
                public override void Add (FilePath[] paths, bool recurse, IProgressMonitor monitor)
78
 
                {
79
 
                }
80
 
 
81
 
                public override void MoveFile (FilePath srcPath, FilePath destPath, bool force, IProgressMonitor monitor)
82
 
                {
83
 
                }
84
 
 
85
 
                public override void MoveDirectory (FilePath srcPath, FilePath destPath, bool force, IProgressMonitor monitor)
86
 
                {
87
 
                }
88
 
 
89
 
                public override void DeleteFiles (FilePath[] path, bool force, IProgressMonitor monitor)
90
 
                {
91
 
                }
92
 
 
93
 
                public override void DeleteDirectories (FilePath[] path, bool force, IProgressMonitor monitor)
 
57
                protected override void OnCommit (ChangeSet changeSet, IProgressMonitor monitor)
 
58
                {
 
59
                }
 
60
 
 
61
                protected override void OnCheckout (FilePath path, Revision rev, bool recurse, IProgressMonitor monitor)
 
62
                {
 
63
                }
 
64
 
 
65
                protected override void OnRevert (FilePath[] localPaths, bool recurse, IProgressMonitor monitor)
 
66
                {
 
67
                }
 
68
 
 
69
                protected override void OnRevertRevision (FilePath localPath, Revision revision, IProgressMonitor monitor)
 
70
                {
 
71
                }
 
72
 
 
73
                protected override void OnRevertToRevision (FilePath localPath, Revision revision, IProgressMonitor monitor)
 
74
                {
 
75
                }
 
76
 
 
77
                protected override void OnAdd (FilePath[] paths, bool recurse, IProgressMonitor monitor)
 
78
                {
 
79
                }
 
80
 
 
81
                protected override void OnMoveFile (FilePath srcPath, FilePath destPath, bool force, IProgressMonitor monitor)
 
82
                {
 
83
                }
 
84
 
 
85
                protected override void OnMoveDirectory (FilePath srcPath, FilePath destPath, bool force, IProgressMonitor monitor)
 
86
                {
 
87
                }
 
88
 
 
89
                protected override void OnDeleteFiles (FilePath[] path, bool force, IProgressMonitor monitor)
 
90
                {
 
91
                }
 
92
 
 
93
                protected override void OnDeleteDirectories (FilePath[] path, bool force, IProgressMonitor monitor)
94
94
                {
95
95
                }
96
96