Package org.tinyuml.draw

Examples of org.tinyuml.draw.DrawingContext


   */
  private void stopEditing() {
    if (captionEditor.isVisible()) {
      String text = captionEditor.getText();
      Label label = captionEditor.getLabel();
      DrawingContext drawCtx = prepareDrawingContext(getGraphics());
      SetLabelTextCommand command = new SetLabelTextCommand(label, text,
        drawCtx);
      execute(command);
      captionEditor.hideEditor();
      repaint();
View Full Code Here

TOP

Related Classes of org.tinyuml.draw.DrawingContext

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.