Package org.cytoscape.application.swing
Interface CyColumnPresentationManager
public interface CyColumnPresentationManager
This class provides access to registered CyColumnPresentation service objects.
- See Also:
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>
Cytoscape Backwards Compatibility (API Interface): We expect that this interface will be used but not implemented by developers using this interface. As such, we reserve the right to add methods to the interface as part of minor version upgrades. We will not remove methods for any changes other than major version upgrades.
-
Method Summary
Modifier and TypeMethodDescriptiongetColumnPresentation
(String namespace) Returns a CyColumnPresentation for the given namespace.default void
Calls the given Consumer callbacks with an icon and text string that represents the given column in an esthetically pleasing way.default void
Sets the text and icon of the given JLabel so that it represents the given column in an esthetically pleasing way.
-
Method Details
-
getColumnPresentation
Returns a CyColumnPresentation for the given namespace. If null is given then the default presentation used for Cytoscape columns is returned. If a CyColumnPresentation has not been registered for the given namespace then a dummy CyColumnPresentation is returned. Does not return null. -
setLabel
Sets the text and icon of the given JLabel so that it represents the given column in an esthetically pleasing way.- Throws:
NullPointerException
- if column or label are null
-
setLabel
Calls the given Consumer callbacks with an icon and text string that represents the given column in an esthetically pleasing way.- Throws:
NullPointerException
- if column is null
-