diff options
author | Benoit Foucher <benoit@zeroc.com> | 2016-09-23 11:44:17 +0200 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2016-09-23 11:44:17 +0200 |
commit | dc45e59a748019d6916c5d6334984f7c07e492e5 (patch) | |
tree | 98ebdfd01560c54c6c1e384fda1a43186a15728f /java | |
parent | Fixed ICE-7230 - Issue with adpater IDs with spaces (diff) | |
download | ice-dc45e59a748019d6916c5d6334984f7c07e492e5.tar.bz2 ice-dc45e59a748019d6916c5d6334984f7c07e492e5.tar.xz ice-dc45e59a748019d6916c5d6334984f7c07e492e5.zip |
Fix for ICE-7167 - fixed some warnings/errors when generating java docs
Diffstat (limited to 'java')
-rw-r--r-- | java/src/IceGridGUI/src/main/java/IceGridGUI/SimpleInternalFrame.java | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/java/src/IceGridGUI/src/main/java/IceGridGUI/SimpleInternalFrame.java b/java/src/IceGridGUI/src/main/java/IceGridGUI/SimpleInternalFrame.java index 14b0a514911..828f228d3d7 100644 --- a/java/src/IceGridGUI/src/main/java/IceGridGUI/SimpleInternalFrame.java +++ b/java/src/IceGridGUI/src/main/java/IceGridGUI/SimpleInternalFrame.java @@ -165,7 +165,9 @@ public class SimpleInternalFrame extends JPanel { /** * Returns the frame's title text. - * * @return String the current title text */ + * + * @return String the current title text + */ public String getTitle() { return titleLabel.getText(); } @@ -178,7 +180,9 @@ public class SimpleInternalFrame extends JPanel { /** * Sets a new title text. - * * @param newText the title text tp be set */ + * + * @param newText the title text tp be set + */ public void setTitle(String newText) { String oldText = getTitle(); titleLabel.setText(newText); @@ -222,7 +226,9 @@ public class SimpleInternalFrame extends JPanel { /** * Returns the content - null, if none has been set. - * * @return the current content */ + * + * @return the current content + */ public Component getContent() { return hasContent() ? getComponent(1) : null; } @@ -230,7 +236,9 @@ public class SimpleInternalFrame extends JPanel { /** * Sets a new panel content; replaces any existing content, if existing. - * * @param newContent the panel's new content */ + * + * @param newContent the panel's new content + */ public void setContent(Component newContent) { Component oldContent = getContent(); if (hasContent()) { |