コード例 #1
0
ファイル: Kit.java プロジェクト: cderoove/damp.ekeko.snippets
 // 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);
 }
コード例 #2
0
 public void setEditorFont(Font f) {
   editor.setFont(f);
 }