~ubuntu-branches/ubuntu/lucid/freeguide/lucid

« back to all changes in this revision

Viewing changes to src/freeguide/common/plugininterfaces/IApplication.java

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Watkins
  • Date: 2008-09-07 15:49:32 UTC
  • mfrom: (1.2.6 upstream) (4.1.2 squeeze)
  • Revision ID: james.westby@ubuntu.com-20080907154932-2jvgv76btq068fe0
Tags: 0.10.9-1
* New upstream release. (Closes: #492789)
* Moved package from contrib to main. (Closes: #492544)
* Added lintian override for 'build-depends-without-arch-dep ant', as ant is
  used in the clean target.

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
import java.util.TimeZone;
6
6
import java.util.logging.Logger;
7
7
 
 
8
import javax.swing.JButton;
8
9
import javax.swing.JFrame;
9
10
import javax.swing.JMenu;
 
11
import javax.swing.JProgressBar;
10
12
 
11
13
/**
12
14
 * Interface for retrieve information about main application.
32
34
    void doPrint(  );
33
35
 
34
36
    Logger getLogger(  );
 
37
    FGLogger getFGLogger(  );
35
38
 
36
39
    TimeZone getTimeZone(  );
37
40
 
59
62
     * DOCUMENT ME!
60
63
     *
61
64
     * @author $author$
62
 
     * @version $Revision: 1600 $
 
65
     * @version $Revision$
63
66
     */
64
67
    public interface IMainMenu
65
68
    {
66
69
        JMenu getTools(  );
67
70
    }
 
71
    
 
72
    IExecutionController getExecutionController();
 
73
 
 
74
    JProgressBar getApplicationProgressBar();
 
75
 
 
76
    JButton getApplicationForegroundButton();
68
77
}