Author: pwang
Date: 2011-10-26 13:18:04 -0700 (Wed, 26 Oct 2011)
New Revision: 27310
Added:
csplugins/trunk/ucsd/ruschein/PanGIA-impl/src/main/java/org/idekerlab/PanGIAPlugin/PanGIACytoPanelComponent.java
Log:
Original creation
Added:
csplugins/trunk/ucsd/ruschein/PanGIA-impl/src/main/java/org/idekerlab/PanGIAPlugin/PanGIACytoPanelComponent.java
===================================================================
---
csplugins/trunk/ucsd/ruschein/PanGIA-impl/src/main/java/org/idekerlab/PanGIAPlugin/PanGIACytoPanelComponent.java
(rev 0)
+++
csplugins/trunk/ucsd/ruschein/PanGIA-impl/src/main/java/org/idekerlab/PanGIAPlugin/PanGIACytoPanelComponent.java
2011-10-26 20:18:04 UTC (rev 27310)
@@ -0,0 +1,37 @@
+package org.idekerlab.PanGIAPlugin;
+
+import java.awt.Component;
+import javax.swing.Icon;
+import org.cytoscape.application.swing.CytoPanelComponent;
+import org.cytoscape.application.swing.CytoPanelName;
+import org.idekerlab.PanGIAPlugin.ui.SearchPropertyPanel;
+
+public class PanGIACytoPanelComponent implements CytoPanelComponent {
+
+ SearchPropertyPanel panel;
+
+ public PanGIACytoPanelComponent(SearchPropertyPanel panel) {
+ this.panel = panel;
+ }
+
+ @Override
+ public Component getComponent() {
+ return panel;
+ }
+
+ @Override
+ public CytoPanelName getCytoPanelName() {
+ return CytoPanelName.WEST;
+ }
+
+ @Override
+ public String getTitle() {
+ return "PanGIA";
+ }
+
+ @Override
+ public Icon getIcon() {
+ return null;
+ }
+
+}
--
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.