Package javax.swing

Examples of javax.swing.JEditorPane.invalidate()


    JEditorPane ep = new JEditorPane("text/html", MsgBuf.toString());
    ep.setBackground(BkColor);
    ep.setEditable(false);
    ep.setFont(messagePanel.getFont());
    ep.setVisible(true);
    ep.invalidate();
    ep.setBorder(new LineBorder(messagePanel.getBackground()));
    return ep;
  }

  public static void info(String htmlMessage, String dialogCaption) {
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.