Package org.eobjects.datacleaner.windows

Examples of org.eobjects.datacleaner.windows.SimpleStringPatternDialog


    final JButton simpleStringPatternButton = createButton(IconUtils.STRING_PATTERN_SIMPLE_IMAGEPATH,
        "<html><b>Simple string pattern</b><br/>A string pattern based on simple string tokens, eg. 'Aaaaa 999'.</html>");
    simpleStringPatternButton.addActionListener(new ActionListener() {
      @Override
      public void actionPerformed(ActionEvent e) {
        new SimpleStringPatternDialog(_catalog, _windowContext).setVisible(true);
      }
    });

    final JButton regexStringPatternButton = createButton(IconUtils.STRING_PATTERN_REGEX_IMAGEPATH,
        "<html><b>Regular expression string pattern</b><br/>A very flexible string pattern, based on regular expressions.</html>");
View Full Code Here


        });
      } else if (stringPattern instanceof SimpleStringPattern) {
        editButton.addActionListener(new ActionListener() {
          @Override
          public void actionPerformed(ActionEvent e) {
            SimpleStringPatternDialog dialog = new SimpleStringPatternDialog(
                (SimpleStringPattern) stringPattern, _catalog, _windowContext);
            dialog.setVisible(true);
          }
        });
      } else {
        editButton.setEnabled(false);
      }
View Full Code Here

TOP

Related Classes of org.eobjects.datacleaner.windows.SimpleStringPatternDialog

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.