Skip to content

Commit

Permalink
Fixed the help information
Browse files Browse the repository at this point in the history
  • Loading branch information
egonw committed Aug 14, 2012
1 parent 09f9e7e commit 7c780db
Showing 1 changed file with 11 additions and 7 deletions.
Expand Up @@ -77,17 +77,21 @@ public List<DescriptorImpl> getFullDescriptorImpls(


@PublishedMethod( methodSummary = "Returns the descriptor " +
"category class by ID" )
"category class by ID",
params="String categoryID")
public DescriptorCategory getCategoryByID(String categoryID);

@PublishedMethod( methodSummary = "Returns the descriptor " +
"provider class by ID" )
"provider class by ID",
params="String providerID")
public DescriptorProvider getProviderByID(String providerID);

@PublishedMethod( methodSummary = "Returns a descriptor class by ID" )
@PublishedMethod( methodSummary = "Returns a descriptor class by ID",
params="String descriptorImplID")
public DescriptorImpl getDescriptorImplByID(String descriptorImplID);

@PublishedMethod( methodSummary = "Returns a descriptor class by ID" )
@PublishedMethod( methodSummary = "Returns a descriptor class by ID",
params="String descriptorID")
boolean existsDescriptorImpl(String descriptorID);

/**
Expand All @@ -104,7 +108,7 @@ public List<DescriptorImpl> getFullDescriptorImpls(
@PublishedMethod(methodSummary = "Get a list of descriptor IDs" )
public List<String> getDescriptorIDs();
@Recorded
@PublishedMethod(params="String hasImpl: require an implementation",
@PublishedMethod(params="String hasImpl",
methodSummary = "Get a list of descriptor IDs" )
public List<String> getDescriptorIDs(boolean hasImpl);

Expand Down Expand Up @@ -205,14 +209,14 @@ void addResourcesAndResponsesToQsarModel(
@Recorded
String listDescriptors( boolean hasImpl );

@PublishedMethod(params="IMolecule mol, String descriptor",
@PublishedMethod(params="IMolecule mol, String ontologyID",
methodSummary = "Calculate a descriptor for a molecule " +
"with the default implementation.")
@Recorded
IDescriptorResult calculate( IMolecule mol, String ontologyID )
throws BioclipseException;

@PublishedMethod(params="IMolecule mol, String descriptor, String provider",
@PublishedMethod(params="IMolecule mol, String ontologyID, String providerID",
methodSummary = "Calculate a descriptor for a molecule " +
"using the default provider.")
@Recorded
Expand Down

0 comments on commit 7c780db

Please sign in to comment.