Author: kono
Date: 2012-07-30 12:05:12 -0700 (Mon, 30 Jul 2012)
New Revision: 30036
Modified:
core3/impl/trunk/table-browser-impl/src/main/java/org/cytoscape/browser/internal/HyperLinkOut.java
Log:
Code Reformat only.
Modified:
core3/impl/trunk/table-browser-impl/src/main/java/org/cytoscape/browser/internal/HyperLinkOut.java
===================================================================
---
core3/impl/trunk/table-browser-impl/src/main/java/org/cytoscape/browser/internal/HyperLinkOut.java
2012-07-30 00:09:07 UTC (rev 30035)
+++
core3/impl/trunk/table-browser-impl/src/main/java/org/cytoscape/browser/internal/HyperLinkOut.java
2012-07-30 19:05:12 UTC (rev 30036)
@@ -24,10 +24,9 @@
You should have received a copy of the GNU Lesser General Public License
along with this library; if not, write to the Free Software Foundation,
Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
-*/
+ */
package org.cytoscape.browser.internal;
-
import java.awt.Color;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
@@ -41,22 +40,16 @@
import org.cytoscape.util.swing.OpenBrowser;
-
public class HyperLinkOut extends JMenu {
- private static final String TITLE = "Search";
+
+ private static final long serialVersionUID = 2344898200050965794L;
+
private final String value;
private final Map<String, Map<String, String>> structure;
private final OpenBrowser openBrowser;
- /**
- * Creates a new HyperLinkOut object.
- *
- * @param value DOCUMENT ME!
- * @param menuStructure DOCUMENT ME!
- */
- public HyperLinkOut(String value,
- final Map<String, Map<String,
String>> menuStructure,
- final OpenBrowser openBrowser)
{
+ public HyperLinkOut(String value, final Map<String, Map<String,
String>> menuStructure,
+ final OpenBrowser openBrowser) {
this.value = value;
this.structure = menuStructure;
this.openBrowser = openBrowser;
@@ -94,7 +87,7 @@
private void buildLinks() {
if (structure == null)
return;
-
+
for (final String category : structure.keySet()) {
JMenu cat = new JMenu(category);
Map<String, String> children = structure.get(category);
--
You received this message because you are subscribed to the Google Groups
"cytoscape-cvs" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/cytoscape-cvs?hl=en.