本文整理汇总了Java中net.sf.memoranda.ui.htmleditor.util.Local.getString方法的典型用法代码示例。如果您正苦于以下问题:Java Local.getString方法的具体用法?Java Local.getString怎么用?Java Local.getString使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类net.sf.memoranda.ui.htmleditor.util.Local
的用法示例。
在下文中一共展示了Local.getString方法的11个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: TableDialog
import net.sf.memoranda.ui.htmleditor.util.Local; //导入方法依赖的package包/类
public TableDialog(Frame frame) {
super(frame, Local.getString("Table"), true);
try {
jbInit();
pack();
} catch (Exception ex) {
ex.printStackTrace();
}
}
示例2: FontDialog
import net.sf.memoranda.ui.htmleditor.util.Local; //导入方法依赖的package包/类
public FontDialog(Frame frame) {
super(frame, Local.getString("Text properties"), true);
try {
jbInit();
pack();
}
catch (Exception ex) {
ex.printStackTrace();
}
}
示例3: TdDialog
import net.sf.memoranda.ui.htmleditor.util.Local; //导入方法依赖的package包/类
public TdDialog(Frame frame) {
super(frame, Local.getString("Table properties"), true);
try {
jbInit();
pack();
}
catch(Exception ex) {
ex.printStackTrace();
}
}
示例4: LinkDialog
import net.sf.memoranda.ui.htmleditor.util.Local; //导入方法依赖的package包/类
public LinkDialog(Frame frame) {
super(frame, Local.getString("Insert hyperlink"), true);
try {
jbInit();
pack();
}
catch(Exception ex) {
ex.printStackTrace();
}
}
示例5: ElementDialog
import net.sf.memoranda.ui.htmleditor.util.Local; //导入方法依赖的package包/类
public ElementDialog(Frame frame) {
super(frame, Local.getString("Object properties"), true);
try {
jbInit();
pack();
}
catch(Exception ex) {
ex.printStackTrace();
}
}
示例6: ImageDialog
import net.sf.memoranda.ui.htmleditor.util.Local; //导入方法依赖的package包/类
public ImageDialog(Frame frame) {
super(frame, Local.getString("Image"), true);
try {
jbInit();
pack();
}
catch (Exception ex) {
ex.printStackTrace();
}
super.addWindowListener(this);
}
示例7: ReplaceOptionsDialog
import net.sf.memoranda.ui.htmleditor.util.Local; //导入方法依赖的package包/类
public ReplaceOptionsDialog(Frame frame, String text) {
super(frame, Local.getString("Replace"), true);
try {
textLabel.setText(text);
jbInit();
pack();
}
catch (Exception ex) {
ex.printStackTrace();
}
}
示例8: RedoAction
import net.sf.memoranda.ui.htmleditor.util.Local; //导入方法依赖的package包/类
public RedoAction() {
super(Local.getString("Redo"));
setEnabled(false);
putValue(
Action.SMALL_ICON,
new ImageIcon(cl.getResource("resources/icons/redo16.png")));
putValue(
Action.ACCELERATOR_KEY,
KeyStroke.getKeyStroke(
KeyEvent.VK_Z,
KeyEvent.CTRL_MASK + KeyEvent.SHIFT_MASK));
}
示例9: BreakAction
import net.sf.memoranda.ui.htmleditor.util.Local; //导入方法依赖的package包/类
BreakAction() {
super(
Local.getString("Insert break"),
new ImageIcon(cl.getResource("resources/icons/break.png")));
}
示例10: InsertTableRowAction
import net.sf.memoranda.ui.htmleditor.util.Local; //导入方法依赖的package包/类
InsertTableRowAction() {
super(Local.getString("Insert table row"));
this.putValue(
Action.ACCELERATOR_KEY,
KeyStroke.getKeyStroke(KeyEvent.VK_ENTER, KeyEvent.CTRL_MASK));
}
示例11: InsertTableRowAction
import net.sf.memoranda.ui.htmleditor.util.Local; //导入方法依赖的package包/类
InsertTableRowAction() {
super(Local.getString("Insert table row"));
this.putValue(
Action.ACCELERATOR_KEY,
KeyStroke.getKeyStroke(KeyEvent.VK_ENTER, KeyEvent.CTRL_MASK));
}