Ejemplo n.º 1
0
 // Here's where the font is set on the editor pane, and we also keep
 // track of the panes in use for future font updates.
 public void install(JEditorPane pane) {
   if (Settings.debug) System.err.println("Installing kit into pane");
   delegate.install(pane);
   panes.add(pane);
   pane.setFont(Settings.font);
 }
Ejemplo n.º 2
0
 public void setEditorFont(Font f) {
   editor.setFont(f);
 }