com.scudata.cellset.graph.draw.ValueLabel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of esproc Show documentation
Show all versions of esproc Show documentation
SPL(Structured Process Language) A programming language specially for structured data computing.
package com.scudata.cellset.graph.draw;
import java.awt.*;
import java.awt.geom.Point2D;
/**
* ?ı???ǩ?ķ?װ??
* ????ͼ??ʱ???ı?ֵ??Ҫ?????ͳһ?????Է?ֹ??????
* @author Joancy
*
*/
public class ValueLabel {
public String text;
public Point2D.Double p;
public Color c;
public byte direction=GraphFontView.TEXT_ON_TOP;
/**
* ????һ???ı???ǩ????
* @param text ?ı?ֵ
* @param p ????
* @param c ??ɫ
*/
public ValueLabel(String text, Point2D.Double p, Color c) {
this.text = text;
this.p = p;
this.c = c;
}
/**
* ????һ???ı???ǩ????
* @param text ?ı?ֵ
* @param p ????
* @param c ??ɫ
* @param textDirection ??λ
*/
public ValueLabel(String text, Point2D.Double p, Color c,byte textDirection) {
this.text = text;
this.p = p;
this.c = c;
this.direction = textDirection;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy