Package edu.pku.sei.metric.xml

Examples of edu.pku.sei.metric.xml.XMLExporter


        Shell activeShell = new Shell();
        FileDialog d = new FileDialog(activeShell, SWT.SAVE);
        String fileName = d.open();
        if (fileName != null) {
          File outputFile = new File(fileName);
          XMLExporter exporter;
          try {
            exporter = new XMLExporter(outputFile);
            doExport(activeShell, exporter);
          } catch (FileNotFoundException e) {
            logger.log(Level.WARNING,
                "MetricsView::File not found", e);
          } catch (InvocationTargetException e) {
View Full Code Here

TOP

Related Classes of edu.pku.sei.metric.xml.XMLExporter

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.