All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.anarres.graphviz.builder.GraphVizElement Maven / Gradle / Ivy

There is a newer version: 1.0.12
Show newest version
/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
package org.anarres.graphviz.builder;

import java.util.Collection;
import java.util.HashSet;
import java.util.LinkedHashMap;
import java.util.Map;
import java.util.Set;
import javax.annotation.CheckForNull;
import javax.annotation.Nonnull;

/**
 *
 * @author shevek
 */
public abstract class GraphVizElement> {

    /** Use GraphVizAttribute. */
    @Deprecated
    public static final String ATTR_COLOR = "color";
    /** Use GraphVizAttribute. */
    @Deprecated
    public static final String ATTR_STYLE = "style";

    @Nonnull
    private final GraphVizGraph graph;
    private final Set comments = new HashSet();
    @CheckForNull
    private GraphVizLabel label;
    @Nonnull
    private final Map attributes = new LinkedHashMap();

    /* pp */ GraphVizElement(@Nonnull GraphVizGraph graph) {
        this.graph = graph;
    }

    @Nonnull
    public GraphVizGraph getGraph() {
        return graph;
    }

    @Nonnull
    public Collection getComments() {
        return comments;
    }

    @Nonnull
    @SuppressWarnings("unchecked")
    public T comment(String text) {
        comments.add(text);
        return (T) this;
    }

    @CheckForNull
    public GraphVizLabel getLabel() {
        return label;
    }

    @Nonnull
    public GraphVizLabel label() {
        if (label == null)
            label = new GraphVizLabel();
        return label;
    }

    @Nonnull
    @SuppressWarnings("unchecked")
    public T label(@Nonnull CharSequence csq) {
        label().set(csq);
        return (T) this;
    }

    @Nonnull
    public Map getAttributes() {
        return attributes;
    }

    @CheckForNull
    public String getAttribute(@Nonnull String name) {
        return attributes.get(name);
    }

    @CheckForNull
    public String getAttribute(@Nonnull GraphVizAttribute name) {
        return getAttribute(name.name());
    }

    /** Sets (or removes) an arbitrary String attribute on this element. */
    public void setAttribute(@Nonnull String name, @CheckForNull String value) {
        if (value == null)
            attributes.remove(name);
        else
            attributes.put(name, value);
    }

    /** Sets (or removes) an arbitrary String attribute on this element. */
    public void setAttribute(@Nonnull GraphVizAttribute name, @CheckForNull String value) {
        setAttribute(name.name(), value);
    }

    /**
     * Sets (or removes) an arbitrary String attribute on this element.
     *
     * @return This object.
     */
    @Nonnull
    public T attr(@Nonnull String name, @CheckForNull String value) {
        setAttribute(name, value);
        return (T) this;
    }

    /**
     * Sets (or removes) an arbitrary String attribute on this element.
     *
     * @return This object.
     */
    @Nonnull
    public T attr(@Nonnull GraphVizAttribute name, @CheckForNull String value) {
        return attr(name.name(), value);
    }

    @CheckForNull
    public String getColor() {
        return getAttribute(GraphVizAttribute.color);
    }

    @Nonnull
    @SuppressWarnings("unchecked")
    public T color(@CheckForNull String color) {
        return attr(GraphVizAttribute.color, color);
    }

    @CheckForNull
    public String getStyle() {
        return getAttribute(GraphVizAttribute.style);
    }

    @Nonnull
    @SuppressWarnings("unchecked")
    public T style(@CheckForNull String style) {
        return attr(GraphVizAttribute.style, style);
    }

    @CheckForNull
    public String getHref() {
        return getAttribute(GraphVizAttribute.href);
    }

    @Nonnull
    @SuppressWarnings("unchecked")
    public T href(String value) {
        return attr(GraphVizAttribute.href, value);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy