1 13 14 package com.ibm.webdav; 15 16 import java.util.*; 17 18 27 public class Workspace extends Collection { 28 35 public void baseline() throws WebDAVException { 36 } 37 44 public static Workspace create(java.net.URL url) throws WebDAVException { 45 return null; 46 } 47 59 public Enumeration differencesWith(Baseline target) throws WebDAVException { 60 return null; 61 } 62 70 public Enumeration getActivities() throws WebDAVException { 71 return null; 72 } 73 87 public Activity getCurrentActivity() throws WebDAVException { 88 return null; 89 } 90 103 public Enumeration getMergeConflicts(Activity mergeSource) throws WebDAVException { 104 return null; 105 } 106 119 public Enumeration getMergeConflicts(Baseline mergeSource) throws WebDAVException { 120 return null; 121 } 122 135 public Enumeration getMergeConflicts(Workspace mergeSource) throws WebDAVException { 136 return null; 137 } 138 150 public Enumeration mergeWith(Activity mergeSource) throws WebDAVException { 151 return null; 152 } 153 165 public Enumeration mergeWith(Baseline mergeSource) throws WebDAVException { 166 return null; 167 } 168 180 public Enumeration mergeWith(Resource mergeSource) throws WebDAVException { 181 return null; 182 } 183 195 public Enumeration mergeWith(Workspace mergeSource) throws WebDAVException { 196 return null; 197 } 198 212 public void setCurrentActivity(Activity currentActivity) throws WebDAVException { 213 } 214 } 215 | Popular Tags |