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

brainslug.flow.renderer.ShapeInfo Maven / Gradle / Ivy

There is a newer version: 0.21
Show newest version
package brainslug.flow.renderer;

import com.mxgraph.util.mxConstants;

import java.util.Hashtable;

public class ShapeInfo {
  String name;
  String location;
  Hashtable style;

  public ShapeInfo(String name, String location, Hashtable style) {
    this.name = name;
    this.location = location;
    this.style = style;

    style.put(mxConstants.STYLE_SHAPE, name);
  }

  public String getName() {
    return name;
  }

  public String getLocation() {
    return location;
  }

  public Hashtable getStyle() {
    return style;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy