Skip to content

Commit

Permalink
Fixes bug: 3353, proof reading bioclipse manager
Browse files Browse the repository at this point in the history
  • Loading branch information
jonalv committed Sep 25, 2012
1 parent f529d14 commit 2a509c0
Showing 1 changed file with 5 additions and 5 deletions.
Expand Up @@ -19,7 +19,8 @@
"textual information on the Bioclipse platform.")
public interface IBioclipsePlatformManager extends IBioclipseManager {

@PublishedMethod(methodSummary="Opens Planet Bioclipse.")
@PublishedMethod(methodSummary="Opens Planet Bioclipse, a syndication " +
"of Blogs with Bioclipse relevance.")
public void planet();

@PublishedMethod(methodSummary="Opens the Bioclipse Wiki.")
Expand Down Expand Up @@ -76,16 +77,15 @@ public String downloadAsFile(String url, String mimeType,
public String version();

@PublishedMethod(
methodSummary="Returns true if the given version is lower than " +
"the current Bioclipse version",
methodSummary="Returns true if the given version is lower or equal " +
"to the current Bioclipse version",
params="String version" )
public void requireVersion( String version ) throws BioclipseException;

@PublishedMethod(
methodSummary="Returns true if the current Bioclipse version is in " +
"between the given (including) lower version bound and " +
"the given (excluding) upper version bound \n"+
"So bioclipse.requireVersion will ",
"the given (excluding) upper version bound",
params="String lowerVersionBound, String upperVersionBound " )
public void requireVersion( String lowerVersionBound,
String upperVersionBound )
Expand Down

0 comments on commit 2a509c0

Please sign in to comment.