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

« back to all changes in this revision

Viewing changes to src/freeguide/plugins/storage/serchannels/StorageSerChannels.java

  • Committer: Bazaar Package Importer
  • Author(s): Shaun Jackman
  • Date: 2007-09-11 16:52:59 UTC
  • mfrom: (1.2.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20070911165259-4r32oke21i1ezbmv
Tags: 0.10.5-1
* New upstream release.
* Update the watch file.
* Change Debian policy to version 3.7.2.2. No changes necessary.
* Add ant-optional to build dependencies. Closes: #441762.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
package freeguide.plugins.storage.serchannels;
 
2
 
 
3
import freeguide.common.lib.fgspecific.data.TVData;
 
4
import freeguide.common.lib.fgspecific.data.TVProgramme;
 
5
 
 
6
import freeguide.common.plugininterfaces.BaseModule;
 
7
import freeguide.common.plugininterfaces.IModuleStorage;
 
8
 
 
9
/**
 
10
 * Storage for store data in ser files splitted by channels only.
 
11
 *
 
12
 * @author Alex Buloichik
 
13
 */
 
14
public class StorageSerChannels extends BaseModule implements IModuleStorage
 
15
{
 
16
    /**
 
17
     * DOCUMENT_ME!
 
18
     *
 
19
     * @param data DOCUMENT_ME!
 
20
     */
 
21
    public void store( final TVData data )
 
22
    {
 
23
    }
 
24
 
 
25
    /**
 
26
     * DOCUMENT_ME!
 
27
     */
 
28
    public void cleanup(  )
 
29
    {
 
30
    }
 
31
 
 
32
    /**
 
33
     * DOCUMENT_ME!
 
34
     *
 
35
     * @return DOCUMENT_ME!
 
36
     */
 
37
    public Object getConfig(  )
 
38
    {
 
39
        return null;
 
40
    }
 
41
 
 
42
    /**
 
43
     * DOCUMENT_ME!
 
44
     *
 
45
     * @return DOCUMENT_ME!
 
46
     */
 
47
    public Info getInfo(  )
 
48
    {
 
49
        return null;
 
50
    }
 
51
 
 
52
    /**
 
53
     * DOCUMENT_ME!
 
54
     *
 
55
     * @param minDate DOCUMENT_ME!
 
56
     * @param check DOCUMENT_ME!
 
57
     *
 
58
     * @return DOCUMENT_ME!
 
59
     *
 
60
     * @throws Exception DOCUMENT_ME!
 
61
     */
 
62
    public TVProgramme findEarliest( long minDate, EarliestCheckAllow check )
 
63
        throws Exception
 
64
    {
 
65
        return null;
 
66
    }
 
67
 
 
68
    /**
 
69
     * DOCUMENT_ME!
 
70
     *
 
71
     * @param loadInfo DOCUMENT_ME!
 
72
     *
 
73
     * @return DOCUMENT_ME!
 
74
     *
 
75
     * @throws Exception DOCUMENT_ME!
 
76
     */
 
77
    public TVData get( Info loadInfo ) throws Exception
 
78
    {
 
79
        return null;
 
80
    }
 
81
}