Beispiel #1
0
 /** Implementing the action of opening the about window. */
 public void aboutMenuItem_actionPerformed(ActionEvent e) {
   if (aboutWindow != null) aboutWindow.setVisible(true);
 }
Beispiel #2
0
 public void setAboutFileName(String fileName) {
   aboutWindow = new HTMLViewFrame(fileName);
   aboutWindow.setSize(450, 420);
 }
Beispiel #3
0
 /** Implementing the action of opening the usage window. */
 public void usageMenuItem_actionPerformed(ActionEvent e) {
   if (usageWindow != null) usageWindow.setVisible(true);
 }
Beispiel #4
0
 public void setUsageFileName(String fileName) {
   usageWindow = new HTMLViewFrame(fileName);
   usageWindow.setSize(450, 430);
 }