Author: pwang
Date: 2009-06-26 17:09:41 -0700 (Fri, 26 Jun 2009)
New Revision: 17137
Added:
csplugins/trunk/soc/chinmoy/phylotree/src/org/cytoscape/phylotree/layout/
csplugins/trunk/soc/chinmoy/phylotree/src/org/cytoscape/phylotree/layout/MyLayout.java
Log:
Stub layout only
Added:
csplugins/trunk/soc/chinmoy/phylotree/src/org/cytoscape/phylotree/layout/MyLayout.java
===================================================================
---
csplugins/trunk/soc/chinmoy/phylotree/src/org/cytoscape/phylotree/layout/MyLayout.java
(rev 0)
+++
csplugins/trunk/soc/chinmoy/phylotree/src/org/cytoscape/phylotree/layout/MyLayout.java
2009-06-27 00:09:41 UTC (rev 17137)
@@ -0,0 +1,23 @@
+package org.cytoscape.phylotree.layout;
+
+import cytoscape.layout.AbstractLayout;
+
+public class MyLayout extends AbstractLayout {
+
+ /**
+ * getName is used to construct property strings
+ * for this layout.
+ */
+ public String getName() {
+ return "My Layout";
+ }
+
+ /**
+ * toString is used to get the user-visible name
+ * of the layout
+ */
+ public String toString(){
+ return "My first Layout";
+ }
+ public void construct() {};
+}
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---