Skip to content

Commit 193287b

Browse files
committed
Javadoc fix: param fixes
1 parent 27a88ff commit 193287b

15 files changed

+28
-14
lines changed

biojava-core/src/main/java/org/biojava/nbio/core/alignment/SimpleAlignedSequence.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@
4444
*
4545
* @author Mark Chapman
4646
* @param <C> each element of the {@link Sequence} is a {@link Compound} of type C
47+
* @param <S> the sequence type
4748
*/
4849
public class SimpleAlignedSequence<S extends Sequence<C>, C extends Compound> implements Serializable, AlignedSequence<S, C> {
4950

biojava-core/src/main/java/org/biojava/nbio/core/alignment/template/AlignedSequence.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@
3434
* @author Mark Chapman
3535
* @author Paolo Pavan
3636
* @param <C> each element of the {@link Sequence} is a {@link Compound} of type C
37+
* @param <S> the sequence type
3738
*/
3839
public interface AlignedSequence<S extends Sequence<C>, C extends Compound> extends Sequence<C> {
3940

biojava-core/src/main/java/org/biojava/nbio/core/alignment/template/MutableAlignedSequence.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@
3434
* @author Mark Chapman
3535
* @author Paolo Pavan
3636
* @param <C> each element of the {@link AlignedSequence} is a {@link Compound} of type C
37+
* @param <S> the sequence type
3738
*/
3839
public interface MutableAlignedSequence<S extends Sequence<C>, C extends Compound> extends AlignedSequence<S, C> {
3940

biojava-core/src/main/java/org/biojava/nbio/core/search/io/Hsp.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,15 +40,16 @@
4040
/**
4141
* This class models a search Hsp.
4242
* You will retrieve a list of this using iterator of a Hit
43-
*
43+
* <p>
4444
* Designed by Paolo Pavan.
4545
* You may want to find my contacts on Github and LinkedIn for code info
4646
* or discuss major changes.
4747
* https://github.com/paolopavan
4848
*
4949
* @author Paolo Pavan
50+
* @param <C> the compound type
51+
* @param <S> the sequence type
5052
*/
51-
5253
public abstract class Hsp <S extends Sequence<C>, C extends Compound> {
5354
private static final Logger logger = LoggerFactory.getLogger(Hsp.class);
5455
private Integer hspNum;

biojava-core/src/main/java/org/biojava/nbio/core/sequence/io/FileProxyProteinSequenceCreator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ public class FileProxyProteinSequenceCreator implements SequenceCreatorInterface
5555

5656
/**
5757
* Need File so that we can store full path name in SequenceFileProxyLoader for Random File access as a quick read
58-
* @param fastaFile
58+
* @param file
5959
* @param compoundSet
6060
*/
6161
public FileProxyProteinSequenceCreator(File file, CompoundSet<AminoAcidCompound> compoundSet, SequenceParserInterface sequenceParser ) {

biojava-core/src/main/java/org/biojava/nbio/core/sequence/io/GenbankReader.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,8 @@
5353
/**
5454
* Use {@link GenbankReaderHelper} as an example of how to use this class where {@link GenbankReaderHelper} should be the
5555
* primary class used to read Genbank files
56-
*
56+
* @param <S> the sequence type
57+
* @param <C> the compound type
5758
*/
5859
public class GenbankReader<S extends AbstractSequence<C>, C extends Compound> {
5960

biojava-core/src/main/java/org/biojava/nbio/core/sequence/io/template/FastaHeaderFormatInterface.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,15 @@
2828
/**
2929
*
3030
* @author Scooter Willis <willishf at gmail dot com>
31+
* @param <C> the compound type
32+
* @param <S> the sequence type
3133
*/
3234
public interface FastaHeaderFormatInterface<S extends Sequence<?>, C extends Compound> {
35+
3336
/**
3437
*
3538
* @param sequence
3639
* @return
3740
*/
38-
public String getHeader(S sequence);
41+
String getHeader(S sequence);
3942
}

biojava-core/src/main/java/org/biojava/nbio/core/sequence/io/template/GenbankHeaderFormatInterface.java

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,16 +28,18 @@
2828

2929
/**
3030
* @author mckeee1
31-
*
31+
* @param <C> the compound type
32+
* @param <S> the sequence type
3233
*/
3334
public interface GenbankHeaderFormatInterface<S extends Sequence<?>, C extends Compound> {
35+
36+
public static final String UNKNOWN_DNA = "UNK";
37+
3438
/**
3539
*
3640
* @param sequence
3741
* @return
3842
*/
39-
public static final String UNKNOWN_DNA = "UNK";
40-
41-
public String getHeader(S sequence);
43+
String getHeader(S sequence);
4244

4345
}

biojava-core/src/main/java/org/biojava/nbio/core/sequence/io/template/SequenceCreatorInterface.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
/**
3434
*
3535
* @author Scooter Willis <willishf at gmail dot com>
36+
* @param <C> the compound type
3637
*/
3738
public interface SequenceCreatorInterface<C extends Compound> {
3839
/**

biojava-core/src/main/java/org/biojava/nbio/core/sequence/io/template/SequenceHeaderParserInterface.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@
2828
/**
2929
*
3030
* @author Scooter Willis <willishf at gmail dot com>
31+
* @param <C> the compound type
32+
* @param <S> the sequence type
3133
*/
3234
public interface SequenceHeaderParserInterface<S extends Sequence<?>, C extends Compound> {
3335
/**

0 commit comments

Comments
 (0)