Robert Chilton's experience inspired me to make the handling of errors and
warnings in ACIP->Tibetan conversion much more configurable. You can now choose from short or long error messages, for one thing. You can change the severity of almost all warnings. Each error and warning has an error code. Errors and warnings are better tested. The converter GUI has a new checkbox for short messages; the converter CLI has a new mandatory option for short messages. I also fixed a bug whereby certain errors were not being appended to the 'errors' StringBuffer.
This commit is contained in:
parent
cc5d096918
commit
e2d42f36eb
22 changed files with 1106 additions and 506 deletions
|
@ -268,7 +268,7 @@ public class Jskad extends JPanel implements DocumentListener {
|
|||
|
||||
fileMenu = new JMenu("File");
|
||||
|
||||
JMenuItem newItem = new JMenuItem("New");
|
||||
JMenuItem newItem = new JMenuItem("New...");
|
||||
// newItem.setAccelerator(KeyStroke.getKeyStroke(KeyEvent.VK_N,java.awt.Event.CTRL_MASK)); //Ctrl-n
|
||||
newItem.addActionListener(new ThdlActionListener() {
|
||||
public void theRealActionPerformed(ActionEvent e) {
|
||||
|
@ -652,7 +652,7 @@ public class Jskad extends JPanel implements DocumentListener {
|
|||
JMenu helpMenu = new JMenu("Help");
|
||||
|
||||
{
|
||||
JMenuItem helpItem = new JMenuItem("Help");
|
||||
JMenuItem helpItem = new JMenuItem("Help...");
|
||||
helpItem.addActionListener(new ThdlActionListener() {
|
||||
public void theRealActionPerformed(ActionEvent e) {
|
||||
CalHTMLPane helpPane = new CalHTMLPane();
|
||||
|
@ -672,7 +672,7 @@ public class Jskad extends JPanel implements DocumentListener {
|
|||
}
|
||||
|
||||
{
|
||||
JMenuItem helpItem = new JMenuItem("Jskad on the Web");
|
||||
JMenuItem helpItem = new JMenuItem("Jskad on the Web...");
|
||||
helpItem.addActionListener(new ThdlActionListener() {
|
||||
public void theRealActionPerformed(ActionEvent e) {
|
||||
CalHTMLPane onlineHelpPane = new CalHTMLPane();
|
||||
|
@ -692,7 +692,7 @@ public class Jskad extends JPanel implements DocumentListener {
|
|||
for (int i = 0; i < keybdMgr.size(); i++) {
|
||||
final JskadKeyboard kbd = keybdMgr.elementAt(i);
|
||||
if (kbd.hasQuickRefFile()) {
|
||||
JMenuItem keybdItem = new JMenuItem(kbd.getIdentifyingString());
|
||||
JMenuItem keybdItem = new JMenuItem(kbd.getIdentifyingString() + "...");
|
||||
keybdItem.addActionListener(new ThdlActionListener() {
|
||||
public void theRealActionPerformed(ActionEvent e) {
|
||||
new SimpleFrame(kbd.getIdentifyingString(),
|
||||
|
@ -712,7 +712,7 @@ public class Jskad extends JPanel implements DocumentListener {
|
|||
helpMenu.addSeparator();
|
||||
|
||||
{
|
||||
JMenuItem aboutItem = new JMenuItem("About");
|
||||
JMenuItem aboutItem = new JMenuItem("About...");
|
||||
aboutItem.addActionListener(new ThdlActionListener() {
|
||||
public void theRealActionPerformed(ActionEvent e) {
|
||||
JOptionPane.showMessageDialog(Jskad.this,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue