Ejemplo n.º 1
0
 public JButton getReplaceFindButton() {
   if (replaceFindButton == null) {
     replaceFindButton = new JButton("Replace...");
     replaceFindButton.setMnemonic('R');
     replaceFindButton.addActionListener(this);
   }
   return replaceFindButton;
 }
Ejemplo n.º 2
0
 public JButton getCloseButton() {
   if (closeButton == null) {
     closeButton = new JButton();
     closeButton.setText("Close");
     closeButton.setMnemonic('C');
     closeButton.addActionListener(this);
   }
   return closeButton;
 }
Ejemplo n.º 3
0
 public JButton getReplaceAllButton() {
   if (replaceAllButton == null) {
     replaceAllButton = new JButton();
     replaceAllButton.setText("Replace All");
     replaceAllButton.setMnemonic('A');
     replaceAllButton.setDisplayedMnemonicIndex(8);
     replaceAllButton.addActionListener(this);
   }
   return replaceAllButton;
 }
Ejemplo n.º 4
0
 public JButton getReplaceButton() {
   if (replaceButton == null) {
     replaceButton = new JButton();
     replaceButton.setText("Replace");
     replaceButton.setMnemonic('R');
     replaceButton.setDefaultCapable(true);
     replaceButton.addActionListener(this);
   }
   return replaceButton;
 }
Ejemplo n.º 5
0
 public JButton getFindNextButton() {
   if (findNextButton == null) {
     findNextButton = new JButton();
     findNextButton.setText("Find Next");
     findNextButton.setMnemonic('F');
     findNextButton.setDefaultCapable(true);
     findNextButton.addActionListener(this);
   }
   return findNextButton;
 }