Package org.cytoscape.application.swing
Interface CyColumnPresentation
public interface CyColumnPresentation
Service that allows UI presentation to be given for a column namespace.
Register as an OSGi service.
Properties props = new Properties(); props.put(CyColumnPresentation.NAMESPACE, "myNamespace"); registerService(bc, new MyColumnPresentation(), CyColumnPresentation.class, props);
- See Also:
Cytoscape Backwards Compatibility (SPI Interface): We expect that this interface will be implemented. Therefore to maintain backwards compatibility this interface will only be modified for major version updates.
Module: swing-application-api
To use this in your app, include the following dependency in your POM:
<dependency> <groupId>org.cytoscape</groupId> <artifactId>swing-application-api</artifactId> </dependency>
-
Field Summary
-
Method Summary
Modifier and TypeMethodDescriptionReturns a String description of the namespace.Returns an icon associated with the namespace.
-
Field Details
-
NAMESPACE
OSGi property, use to provide the namespace to associate this presentation with.- See Also:
-
-
Method Details