Skip to content

Commit 6bc94f6

Browse files
committed
Resolve Javadoc errors
1 parent 1a9df87 commit 6bc94f6

8 files changed

Lines changed: 8 additions & 9 deletions

File tree

src/main/java/au/id/mcc/adapted/swing/SVGIcon.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ public BufferedImage createImage(int width, int height) {
124124
* Writes the specified image to the specified output.
125125
* @param img the image to write
126126
* @param output the output where to store the image
127-
* @param TranscoderException if an error occured while storing the image
127+
* @throws TranscoderException if an error occurred while storing the image
128128
*/
129129
public void writeImage(BufferedImage img, TranscoderOutput output)
130130
throws TranscoderException {

src/main/java/org/elephant/Elephant.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -387,7 +387,7 @@ public Elephant()
387387
}
388388

389389
/**
390-
* Set up {@link MastodonPluginAppModel}-dependent modules.
390+
* Set up {@link ProjectModel}-dependent modules.
391391
*/
392392
@Override
393393
public void setAppPluginModel( final ProjectModel pluginAppModel )

src/main/java/org/elephant/ElephantExtra.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ public ElephantExtra()
9898
}
9999

100100
/**
101-
* Set up {@link MastodonPluginAppModel}-dependent modules.
101+
* Set up {@link ProjectModel}-dependent modules.
102102
*/
103103
@Override
104104
public void setAppPluginModel( final ProjectModel pluginAppModel )

src/main/java/org/elephant/actions/AbstractElephantAction.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
* ELEPHANT actions are supposed to extend this class.
5050
*
5151
* <p>
52-
* This class provides accesses to {@link MastodonPluginAppModel},
52+
* This class provides access to {@link ProjectModel},
5353
* {@link GroupHandle} and {@link Logger} instances, which can be shared among
5454
* all actions and services.
5555
*

src/main/java/org/elephant/actions/GraphListenerService.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ public GraphListenerService( final ProjectModel pluginAppModel )
5454
}
5555

5656
/**
57-
* GraphListener< Spot, Link >
57+
* GraphListener&lt;Spot, Link&gt;
5858
*/
5959

6060
@Override

src/main/java/org/elephant/actions/VertexPositionListenerService.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ public VertexPositionListenerService( final ProjectModel pluginAppModel )
4949
}
5050

5151
/**
52-
* VertexPositionListener< Spot >
52+
* VertexPositionListener&lt;Spot&gt;
5353
*/
5454

5555
@Override

src/main/java/org/elephant/actions/mixins/BdvViewMouseMotionMixin.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,8 @@ public interface BdvViewMouseMotionMixin extends MouseMotionListener, TransformL
4646
AffineTransform3D getRenderTransform();
4747

4848
/**
49-
* Copied from {@link org.mastodon.revised.bdv.overlay.OverlayGraphRenderer}.
50-
*
5149
* Transform viewer coordinates to global (world) coordinates.
50+
* Adapted from Mastodon's OverlayGraphRenderer.
5251
*
5352
* @param x
5453
* viewer X coordinate

src/main/java/org/elephant/actions/mixins/GraphChangeActionMixin.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
import javax.swing.SwingUtilities;
3232

3333
/**
34-
* Trigger a {@link GraphChangeListener.graphChanged()} event.
34+
* Trigger a graph change event to notify all graph change listeners.
3535
*
3636
* @author Ko Sugawara
3737
*/

0 commit comments

Comments
 (0)