Package org.thechiselgroup.choosel.core.client.visualization.model.VisualItem

Examples of org.thechiselgroup.choosel.core.client.visualization.model.VisualItem.Status


     * Updates the graph node to reflect the style and values of the underlying
     * resource item.
     */
    // TODO expose border color, node color, font weight, font color as slots
    public void updateNode() {
        Status highlighStatus = visualItem.getStatus(Subset.HIGHLIGHTED);
        Status selectionStatus = visualItem.getStatus(Subset.SELECTED);

        boolean isHighlighted = Status.PARTIAL == highlighStatus
                || Status.FULL == highlighStatus;
        boolean isSelected = Status.PARTIAL == selectionStatus
                || Status.FULL == selectionStatus;
View Full Code Here

TOP

Related Classes of org.thechiselgroup.choosel.core.client.visualization.model.VisualItem.Status

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.