Package org.analyse.core.modules

Examples of org.analyse.core.modules.AnalyseModule


    public void open(String fileName)
    {
        if (fileName == null)
            return;

        AnalyseModule mod;
        for (Iterator<Entry<String, AnalyseModule>> e = Main.modules.entrySet().iterator(); e.hasNext();) {
            mod = e.next().getValue();
            mod.clear();
        }

        this.setSave ( true ) ;

        this.fileName = fileName;
View Full Code Here


    public void clear() {
     
      if ( ! this.isNewOption() )
        this.popupSauvegarde ()

        AnalyseModule mod;
        for (Iterator<Entry<String, AnalyseModule>>  e = Main.modules.entrySet().iterator(); e.hasNext();) {
            mod = e.next().getValue();
            mod.clear();
        }

        this.setSave ( false ) ;
        frame.setTitle( Utilities.getRelease() + " - sans nom");
    }
View Full Code Here

        globalActionCollection = new GlobalActionCollection();

        statusbar = new AnalyseStatusbar();
        splash.setProgress(10);

        AnalyseModule mod;
        mod = new MeriseModule();
        modules.put(mod.getID(), mod);
        splash.setProgress(20);

        analyseFrame = new AnalyseFrame();

        for (Iterator<Entry<String, AnalyseModule>> e = modules.entrySet().iterator(); e.hasNext();) {
View Full Code Here

                out.println("</company>");


                out.println("</about>");

                AnalyseModule mod;
                FilterModule fm;
               
                Iterator<Entry<String, AnalyseModule>> e = Main.modules.entrySet().iterator();
                while ( e.hasNext() ) {
                    mod = e.next().getValue();

                    out.println("<module id=\"" + mod.getID().toLowerCase()
                            + "\">");

                    fm = mod.getFiltre(ID);
                    if (fm != null && fm.canSave())
                        ((SaveModule) fm).save(out);

                    out.println("</module>");
View Full Code Here

TOP

Related Classes of org.analyse.core.modules.AnalyseModule

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.