use of org.cytoscape.view.presentation.property.BasicVisualLexicon in project cytoscape-api by cytoscape.
the class VisualPropertyDependencyTest method setUp.
@Before
public void setUp() throws Exception {
MockitoAnnotations.initMocks(this);
lexicon = new BasicVisualLexicon(rootVisualProperty);
vpSet = new HashSet<VisualProperty<Paint>>();
vpSet.add(BasicVisualLexicon.NODE_BORDER_PAINT);
vpSet.add(BasicVisualLexicon.NODE_FILL_COLOR);
dependency = new VisualPropertyDependency<Paint>(id, displayName, vpSet, lexicon);
}
Aggregations