Author: mes
Date: 2011-09-28 09:37:35 -0700 (Wed, 28 Sep 2011)
New Revision: 27004
Modified:
core3/api/trunk/viewmodel-api/src/main/java/org/cytoscape/view/model/View.java
Log:
made interface declarations not public
Modified:
core3/api/trunk/viewmodel-api/src/main/java/org/cytoscape/view/model/View.java
===================================================================
---
core3/api/trunk/viewmodel-api/src/main/java/org/cytoscape/view/model/View.java
2011-09-28 01:06:20 UTC (rev 27003)
+++
core3/api/trunk/viewmodel-api/src/main/java/org/cytoscape/view/model/View.java
2011-09-28 16:37:35 UTC (rev 27004)
@@ -58,7 +58,7 @@
* @param vp the VisualProperty (Node Color, Edge Width, etc.)
* @param value actual value stored in this visual property.
*/
- public <T, V extends T> void setVisualProperty(VisualProperty<? extends
T> vp, V value);
+ <T, V extends T> void setVisualProperty(VisualProperty<? extends T> vp,
V value);
/**
@@ -69,7 +69,7 @@
* @param vp the VisualProperty
* @return Value associated with this View and Visual Property pair.
*/
- public <T> T getVisualProperty(VisualProperty<T> vp);
+ <T> T getVisualProperty(VisualProperty<T> vp);
/**
@@ -79,14 +79,14 @@
* @param vp the VisualProperty
* @param value DOCUMENT ME!
*/
- public <T, V extends T> void setLockedValue(VisualProperty<? extends T>
vp, V value);
+ <T, V extends T> void setLockedValue(VisualProperty<? extends T> vp, V
value);
/**
* @param vp the VisualProperty
* @return true if current VisualProperty value is locked
*/
- public boolean isValueLocked(VisualProperty<?> vp);
+ boolean isValueLocked(VisualProperty<?> vp);
/**
@@ -94,7 +94,7 @@
*
* @param vp the VisualProperty
*/
- public void clearValueLock(VisualProperty<?> vp);
+ void clearValueLock(VisualProperty<?> vp);
/**
@@ -102,6 +102,6 @@
*
* @return Data object of this view.
*/
- public S getModel();
+ S getModel();
}
--
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.