Skip to content

Commit 27a88ff

Browse files
committed
Javadoc fix: <p>
1 parent 26e1a4d commit 27a88ff

File tree

16 files changed

+20
-19
lines changed

16 files changed

+20
-19
lines changed

biojava-aa-prop/src/main/java/org/biojava/nbio/aaproperties/Constraints.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
/**
3131
* This class is used to support the implementation of properties stated in IPeptideProperties.
3232
* It initializes several values that would be needed for the computation of properties such as
33-
* <p/>
33+
* <p>
3434
* Molecular weight<br/>
3535
* Instability index<br/>
3636
* Hydropathy value<br/>

biojava-aa-prop/src/main/java/org/biojava/nbio/aaproperties/IPeptideProperties.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
/**
3636
* An interface to generate some basic physico-chemical properties of protein sequences.<br/>
3737
* The following properties could be generated:
38-
* <p/>
38+
* <p>
3939
* Molecular weight<br/>
4040
* Absorbance<br/>
4141
* Extinction coefficient<br/>

biojava-aa-prop/src/main/java/org/biojava/nbio/aaproperties/profeat/IProfeatProperties.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public interface IProfeatProperties {
2828
/**
2929
* Based on Table 2 of http://nar.oxfordjournals.org/content/34/suppl_2/W32.full.pdf<br/>
3030
* An interface class to generate the properties of a protein sequence based on its converted attributes.<br/>
31-
* The seven different attributes are<p/>
31+
* The seven different attributes are<p>
3232
* Hydrophobicity (Polar, Neutral, Hydrophobicity)<br/>
3333
* Normalized van der Waals volume (Range 0 - 2.78, 2.95 - 4.0, 4.03 - 8.08)<br/>
3434
* Polarity (Value 4.9 - 6.2, 8.0 - 9.2, 10.4 - 13.0)<br/>

biojava-aa-prop/src/main/java/org/biojava/nbio/aaproperties/profeat/convertor/Convertor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public abstract class Convertor {
2828
/**
2929
* Based on Table 2 of http://nar.oxfordjournals.org/content/34/suppl_2/W32.full.pdf<br/>
3030
* An abstract class to convert a protein sequence into representation of different attribute with each attribute having 3 groups.<br/>
31-
* The seven different attributes are<p/>
31+
* The seven different attributes are<p>
3232
* Hydrophobicity (Polar, Neutral, Hydrophobicity)<br/>
3333
* Normalized van der Waals volume (Range 0 - 2.78, 2.95 - 4.0, 4.03 - 8.08)<br/>
3434
* Polarity (Value 4.9 - 6.2, 8.0 - 9.2, 10.4 - 13.0)<br/>

biojava-aa-prop/src/main/java/org/biojava/nbio/aaproperties/profeat/convertor/package-info.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
*/
2121
/**
2222
* Set of classes that enable the conversion protein sequences into various attributes.
23-
* The seven different attributes are<p/>
23+
* The seven different attributes are<p>
2424
* Hydrophobicity (Polar, Neutral, Hydrophobicity)<br/>
2525
* Normalized van der Waals volume (Range 0 - 2.78, 2.95 - 4.0, 4.03 - 8.08)<br/>
2626
* Polarity (Value 4.9 - 6.2, 8.0 - 9.2, 10.4 - 13.0)<br/>

biojava-core/src/main/java/org/biojava/nbio/core/util/FlatFileCache.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ private FlatFileCache(){
5858

5959
/**
6060
* The file is read and the bytes stored immediately.
61-
* <p/>
61+
* <p>
6262
* Once added, {@code fileToCache} can be modified or deleted and the cached values will not change.
6363
* @param key
6464
* @param fileToCache A readable file, of Integer.MAX bytes length or less.

biojava-core/src/main/java/org/biojava/nbio/core/util/SoftHashMap.java

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,13 @@
3131
import org.slf4j.LoggerFactory;
3232

3333

34-
/** A in memory cache using soft references. (can be garbage collected)
34+
/**
35+
* An in memory cache using soft references. (can be garbage collected)
3536
* This code is based on: http://java-interview-faqs.blogspot.com/2008/09/building-faster-and-efficient-cache.html
36-
* <p/>
37+
* <p>
3738
* Note that entrySet() is not implemented and therefore many methods such as keySet(),
3839
* containsKey(), values() etc do not work.
39-
* <p/>
40+
* <p>
4041
* This class is therefore best used as a cache simply to put and get items by a known key
4142
*/
4243
public class SoftHashMap<K, V> extends AbstractMap<K, V> {

biojava-core/src/main/java/org/biojava/nbio/core/util/XMLWriter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ public interface XMLWriter {
113113
* avoid namespaces that are used only in leaf-nodes of a tree being re-defined
114114
* every time they are used. The XMLWriter will generally try to use the
115115
* suggested prefix for this namespace, but there is no guarantee of this.
116-
* <p/>
116+
* <p>
117117
*
118118
* In particular, if the namespace is already in use, the current prefix will still
119119
* be used. Similarly if the suggested prefix has already been used for another

biojava-ws/src/main/java/org/biojava/nbio/ws/alignment/qblast/BlastAlignmentParameterEnum.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
/**
2727
* Alignment request parameters accepted by QBlast service.<br/>
2828
* Not all are mandatory. Certain parameters only work with a subset of other parameters in the list.
29-
* <p/>
29+
* <p>
3030
* Taken from <a href=https://www.ncbi.nlm.nih.gov/staff/tao/URLAPI/new/node9.html>Blast URL API</a>
3131
*
3232
* @author Gediminas Rimsa

biojava-ws/src/main/java/org/biojava/nbio/ws/alignment/qblast/BlastOutputAlignmentFormatEnum.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525

2626
/**
2727
* Enum representing available output alignment types.
28-
* <p/>
28+
* <p>
2929
* Values as used in QBlast URL API.
3030
*
3131
* @author Gediminas Rimsa

0 commit comments

Comments
 (0)