Javadoc warnings fixed

(Some JNA docs also changed to standard comments)
This commit is contained in:
Jindra Petřík
2015-04-06 06:32:40 +02:00
parent 1115432370
commit a7e79a9570
20 changed files with 221 additions and 220 deletions

View File

@@ -38,7 +38,8 @@ public class LinkLabel extends JLabel {
/**
* Creates a new LinkLabel with the given text.
*
* @param text
* @param text Text
* @param url URL
*/
public LinkLabel(String text, String url) {
super(text);
@@ -55,7 +56,7 @@ public class LinkLabel extends JLabel {
/**
* Sets the text of the label.
*
* @param text
* @param text Text to show
*/
@Override
public void setText(String text) {
@@ -66,7 +67,7 @@ public class LinkLabel extends JLabel {
/**
* Returns the text set by the user.
*
* @return
* @return Text
*/
public String getNormalText() {
return text;
@@ -75,7 +76,7 @@ public class LinkLabel extends JLabel {
/**
* Processes mouse events and responds to clicks.
*
* @param evt
* @param evt Event
*/
@Override
protected void processMouseEvent(MouseEvent evt) {