~ubuntu-branches/ubuntu/trusty/freeguide/trusty

« back to all changes in this revision

Viewing changes to src/freeguide/plugins/grabber/rbc/GrabberRbc.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:
16
16
 * DOCUMENT ME!
17
17
 *
18
18
 * @author $author$
19
 
 * @version $Revision: 1622 $
 
19
 * @version $Revision$
20
20
 */
21
21
public class GrabberRbc extends BaseModule implements IModuleGrabber
22
22
{
169
169
     * DOCUMENT ME!
170
170
     *
171
171
     * @author $author$
172
 
     * @version $Revision: 1622 $
 
172
     * @version $Revision$
173
173
     */
174
174
    public static class DataParser extends DefaultHandler
175
175
    {
188
188
     * DOCUMENT ME!
189
189
     *
190
190
     * @author $author$
191
 
     * @version $Revision: 1622 $
 
191
     * @version $Revision$
192
192
     */
193
193
    public static class AnnParser extends DefaultHandler
194
194
    {
195
195
    }
 
196
 
 
197
    public boolean chooseChannels( IProgress progress, ILogger logger )
 
198
    {
 
199
        // No need to choose channels for this grabber
 
200
        return false;
 
201
    }
 
202
 
 
203
    public int chooseChannelsOne( String moduleName, IProgress progress, ILogger logger )
 
204
    {
 
205
        // No need to choose channels for this grabber
 
206
        return -1;
 
207
    }
196
208
}