Author: evenisse Date: Tue Apr 3 09:11:48 2007 New Revision: 525196 URL: http://svn.apache.org/viewvc?view=rev&rev=525196 Log: (empty)
Modified: maven/scm/trunk/maven-scm-test/src/main/java/org/apache/maven/scm/provider/ScmProviderStub.java Modified: maven/scm/trunk/maven-scm-test/src/main/java/org/apache/maven/scm/provider/ScmProviderStub.java URL: http://svn.apache.org/viewvc/maven/scm/trunk/maven-scm-test/src/main/java/org/apache/maven/scm/provider/ScmProviderStub.java?view=diff&rev=525196&r1=525195&r2=525196 ============================================================================== --- maven/scm/trunk/maven-scm-test/src/main/java/org/apache/maven/scm/provider/ScmProviderStub.java (original) +++ maven/scm/trunk/maven-scm-test/src/main/java/org/apache/maven/scm/provider/ScmProviderStub.java Tue Apr 3 09:11:48 2007 @@ -417,6 +417,15 @@ /** * @return getCheckInScmResult() always */ + public CheckInScmResult checkIn( ScmRepository repository, ScmFileSet fileSet, String message ) + throws ScmException + { + return getCheckInScmResult(); + } + + /** + * @return getCheckInScmResult() always + */ public CheckInScmResult checkIn( ScmRepository repository, ScmFileSet fileSet, ScmVersion revision, String message ) throws ScmException { @@ -442,6 +451,15 @@ /** * @return getCheckOutScmResult() always */ + public CheckOutScmResult checkOut( ScmRepository repository, ScmFileSet fileSet ) + throws ScmException + { + return getCheckOutScmResult(); + } + + /** + * @return getCheckOutScmResult() always + */ public CheckOutScmResult checkOut( ScmRepository repository, ScmFileSet fileSet, ScmVersion version ) throws ScmException { @@ -451,6 +469,15 @@ /** * @return getCheckOutScmResult() always */ + public CheckOutScmResult checkOut( ScmRepository scmRepository, ScmFileSet scmFileSet, boolean recursive ) + throws ScmException + { + return getCheckOutScmResult(); + } + + /** + * @return getCheckOutScmResult() always + */ public CheckOutScmResult checkOut( ScmRepository scmRepository, ScmFileSet scmFileSet, ScmVersion version, boolean recursive ) throws ScmException @@ -517,6 +544,15 @@ /** * @return getExportScmResult() always */ + public ExportScmResult export( ScmRepository repository, ScmFileSet fileSet ) + throws ScmException + { + return getExportScmResult(); + } + + /** + * @return getExportScmResult() always + */ public ExportScmResult export( ScmRepository repository, ScmFileSet fileSet, ScmVersion version ) throws ScmException { @@ -627,7 +663,25 @@ /** * @return getUpdateScmResult() always */ + public UpdateScmResult update( ScmRepository repository, ScmFileSet fileSet ) + throws ScmException + { + return getUpdateScmResult(); + } + + /** + * @return getUpdateScmResult() always + */ public UpdateScmResult update( ScmRepository repository, ScmFileSet fileSet, ScmVersion version ) + throws ScmException + { + return getUpdateScmResult(); + } + + /** + * @return getUpdateScmResult() always + */ + public UpdateScmResult update( ScmRepository repository, ScmFileSet fileSet, boolean runChangelog ) throws ScmException { return getUpdateScmResult();