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

« back to all changes in this revision

Viewing changes to src/freeguide/common/plugininterfaces/IModuleGrabber.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:
25
25
        throws Exception;
26
26
 
27
27
    /**
 
28
     * Choose which channels to download
 
29
     *
 
30
     * @param progress IProgress
 
31
     * @param logger ILogger
 
32
     * @param storage DOCUMENT ME!
 
33
     *
 
34
     * @return DOCUMENT_ME!
 
35
     *
 
36
     * @throws Exception
 
37
     */
 
38
    boolean chooseChannels( IProgress progress, ILogger logger );
 
39
 
 
40
    /**
28
41
     * Start module. Called when application starts.
 
42
     * @param controller  
29
43
     */
30
44
    void start(  );
31
45
 
33
47
     * Stop module. Called when application stops.
34
48
     */
35
49
    void stop(  );
 
50
 
 
51
    int chooseChannelsOne( String moduleName, IProgress progress, ILogger logger );
36
52
}