Package org.jitterbit.tools.xml.xmlviewer.ui

Examples of org.jitterbit.tools.xml.xmlviewer.ui.MainWindow$SearchAction


     *
     * @param args
     */
  public static void main(String[] args) {
    setLookAndFeel();
    MainWindow w = new MainWindow(ExecutionMode.STAND_ALONE);
    for( String s : args ) {
        String sFilename = s.trim();
        if( sFilename.length() > 0 ) {
            w.getFileOpener().openFile( new File(sFilename) );
            }
    }
    w.setVisible(true);
  }
View Full Code Here


     * @throws NullPointerException
     *             if <tt>xmlFiles</tt> is null.
     */
    public XmlViewer(File[] xmlFiles) {
        m_xmlFiles = Arrays.asList(xmlFiles);
        m_mainWindow = new MainWindow(ExecutionMode.BUNDLED);
    }
View Full Code Here

TOP

Related Classes of org.jitterbit.tools.xml.xmlviewer.ui.MainWindow$SearchAction

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.