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

cdc.gv.atts.GvSubgraphAttributes Maven / Gradle / Ivy

There is a newer version: 0.100.2
Show newest version
package cdc.gv.atts;

/**
 * Definition of subgraph attributes.
 *
 * @author Damien Carbonne
 *
 */
public final class GvSubgraphAttributes extends GvAttributes {
    public GvSubgraphAttributes() {
        super(GvAttributeUsage.SUBGRAPH);
    }

    @Override
    protected GvSubgraphAttributes self() {
        return this;
    }

    @Override
    public GvSubgraphAttributes setRank(GvRankType value) {
        return super.setRank(value);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy