Class ShapeProperties

java.lang.Object
org.teamapps.ux.component.map.shape.ShapeProperties

public class ShapeProperties
extends java.lang.Object
  • Constructor Summary

    Constructors 
    Constructor Description
    ShapeProperties​(org.teamapps.common.format.Color strokeColor)  
    ShapeProperties​(org.teamapps.common.format.Color strokeColor, float strokeWeight)  
    ShapeProperties​(org.teamapps.common.format.Color strokeColor, float strokeWeight, java.lang.String strokeDashArray)  
    ShapeProperties​(org.teamapps.common.format.Color strokeColor, float strokeWeight, org.teamapps.common.format.Color fillColor)  
  • Method Summary

    Modifier and Type Method Description
    org.teamapps.dto.UiShapeProperties createUiShapeProperties()  
    org.teamapps.common.format.Color getFillColor()  
    org.teamapps.common.format.Color getStrokeColor()  
    java.lang.String getStrokeDashArray()  
    float getStrokeWeight()  
    void setFillColor​(org.teamapps.common.format.Color fillColor)  
    void setStrokeColor​(org.teamapps.common.format.Color strokeColor)  
    void setStrokeDashArray​(java.lang.String strokeDashArray)  
    void setStrokeWeight​(float strokeWeight)  

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • ShapeProperties

      public ShapeProperties​(org.teamapps.common.format.Color strokeColor)
    • ShapeProperties

      public ShapeProperties​(org.teamapps.common.format.Color strokeColor, float strokeWeight)
    • ShapeProperties

      public ShapeProperties​(org.teamapps.common.format.Color strokeColor, float strokeWeight, java.lang.String strokeDashArray)
    • ShapeProperties

      public ShapeProperties​(org.teamapps.common.format.Color strokeColor, float strokeWeight, org.teamapps.common.format.Color fillColor)
  • Method Details