jLabel.setToolTipText(tooltip);
}
+ /**
+ * standard font for labels and check boxes in dialog boxes
+ * @return
+ */
+
+ public static Font getLabelFont()
+ {
+ return getLabelFont(false,false);
+ }
+ public static Font getLabelFont(boolean bold, boolean italic)
+ {
+ return new java.awt.Font("Verdana", (!bold && !italic) ? Font.PLAIN : (bold ? Font.BOLD : 0) + (italic ? Font.ITALIC : 0), 11);
+ }
+
+ /**
+ * standard font for editable text areas
+ * @return
+ */
+ public static Font getTextAreaFont()
+ {
+ return getLabelFont(false,false);
+ }
+
}