Package com.cburch.draw.util

Examples of com.cburch.draw.util.EditableLabel


        DrawAttr.DEFAULT_FONT, Color.BLACK);
  }

  private Text(int x, int y, int halign, int valign, String text, Font font,
    Color color) {
    label = new EditableLabel(x, y, text, font);
    label.setColor(color);
    label.setHorizontalAlignment(halign);
    label.setVerticalAlignment(valign);
  }
View Full Code Here


                DrawAttr.DEFAULT_FONT, Color.BLACK);
    }

    private Text(int x, int y, int halign, int valign, String text, Font font,
        Color color) {
        label = new EditableLabel(x, y, text, font);
        label.setColor(color);
        label.setHorizontalAlignment(halign);
        label.setVerticalAlignment(valign);
    }
View Full Code Here

TOP

Related Classes of com.cburch.draw.util.EditableLabel

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.