Skip to content

Commit aefa34a

Browse files
committed
Javadoc fix: errors in structure-gui module
1 parent 2bbc824 commit aefa34a

16 files changed

Lines changed: 13 additions & 25 deletions

File tree

biojava-ontology/src/main/java/org/biojava/nbio/ontology/io/package-info.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,8 @@
1919
*
2020
*/
2121
/**
22-
* <BODY>
2322
* <P>
2423
* Tools for loading and saving ontologies.
2524
* </P>
26-
* </BODY>
2725
*/
2826
package org.biojava.nbio.ontology.io;

biojava-ontology/src/main/java/package-info.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919
*
2020
*/
2121
/**
22-
* <BODY>
2322
* <P>
2423
* A general-purpose API for ontologies.
2524
* These are directed graphs consisting of <code>Term</code> obects. Each
@@ -30,5 +29,4 @@
3029
* <P>Some interfaces and implementations from this package are extended in
3130
* {@link org.biojavax.ontology biojavax} to better facilitate their persistence to
3231
* biosql.</P>
33-
* </BODY>
3432
*/

biojava-structure-gui/src/main/java/demo/AFPFromFasta.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,9 @@
4141

4242
/**
4343
* Demo displaying a structural alignment from a FASTA file using {@link FastaAFPChainConverter}.
44-
*
45-
* @author dmyerstu
46-
* @see {@link DemoAlignmentFromFasta} Also demonstrates the display of {@link StructureAlignment StructureAlignments} from FASTA sequences, but does so using the more general
44+
* See {@link DemoAlignmentFromFasta} Also demonstrates the display of {@link StructureAlignment StructureAlignments} from FASTA sequences, but does so using the more general
4745
* {@link FastaStructureParser}
46+
* @author dmyerstu
4847
*/
4948
public class AFPFromFasta {
5049

biojava-structure-gui/src/main/java/org/biojava/nbio/structure/align/gui/DotPlotPanel.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,6 @@ public class DotPlotPanel extends ScaleableMatrixPanel {
5656
/**
5757
*
5858
* @param alignment The alignment to plot
59-
* @param background [Optional]A matrix of 'background colors' over which to draw the alignment.
6059
*
6160
* Originally designed as a matrix of RMSD values between AFPs, so it is colorized
6261
* accordingly from red (0) to black (>10).

biojava-structure-gui/src/main/java/org/biojava/nbio/structure/align/gui/MemoryMonitor.java

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

5252

5353
/**
54-
* Tracks Memory allocated & used, displayed in graph form.
54+
* Tracks Memory allocated and used, displayed in graph form.
5555
*/
5656
public class MemoryMonitor extends JPanel {
5757

biojava-structure-gui/src/main/java/org/biojava/nbio/structure/align/gui/SelectPDBPanel.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,8 @@
4343
import org.biojava.nbio.structure.gui.util.StructurePairSelector;
4444

4545

46-
/** A Panel that allows user to specify PDB & chain ID, as well as sub-ranges
46+
/**
47+
* A Panel that allows user to specify PDB and chain ID, as well as sub-ranges
4748
*
4849
* @author Andreas
4950
*

biojava-structure-gui/src/main/java/org/biojava/nbio/structure/align/gui/aligpanel/MultipleAligPanel.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -154,8 +154,8 @@ public MultipleAligPanel(AFPChain afpChain, Atom[] ca1, Atom[] ca2,
154154
/**
155155
* Constructor using a MultipleAlignment.
156156
*
157-
* @param multAln
158-
* @param colors
157+
* @param msa
158+
* @param jm
159159
*/
160160
public MultipleAligPanel(MultipleAlignment msa, AbstractAlignmentJmol jm) {
161161
this();

biojava-structure-gui/src/main/java/org/biojava/nbio/structure/align/gui/jmol/AbstractAlignmentJmol.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ public Structure getStructure(){
196196

197197
/**
198198
* Set the title of the AlignmentJmol window.
199-
* @param label
199+
* @param title
200200
*/
201201
public void setTitle(String title){
202202
frame.setTitle(title);

biojava-structure-gui/src/main/java/org/biojava/nbio/structure/gui/events/package-info.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,10 @@
1919
*
2020
*/
2121
/**
22-
* <BODY>
2322
* <P>
2423
* Some event classes for the protein structure GUIs.
2524
* Possible start classes are one level higher at
2625
* org.biojava.nbio.structure.gui.BiojavaJmol, and org.biojava.nbio.structure.gui.AlignmentGui.
2726
* </P>
28-
* </BODY>
2927
*/
3028
package org.biojava.nbio.structure.gui.events;

biojava-structure-gui/src/main/java/org/biojava/nbio/structure/gui/package-info.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,11 @@
1919
*
2020
*/
2121
/**
22-
* <BODY>
2322
* <P>
2423
* A few convenience classes to view protein structures with Jmol (if it is on the classpath),
2524
* to calculate a protein structure alignment and to investigate the internals of the protein structure alignment algorithm.
2625
* Possible start classes are BiojavaJmol, AlignmentGui.
2726
* Also MVC interface for structure-gui
2827
* </P>
29-
* </BODY>
3028
*/
3129
package org.biojava.nbio.structure.gui;

0 commit comments

Comments
 (0)