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

« back to all changes in this revision

Viewing changes to src/freeguide/common/lib/fgspecific/selection/ManualSelection.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:
43
43
    }
44
44
 
45
45
    /**
46
 
     * DOCUMENT_ME!
47
 
     *
48
 
     * @param programme DOCUMENT_ME!
49
 
     *
50
 
     * @return DOCUMENT_ME!
 
46
     * Test programme for matches selection.
 
47
     *
 
48
     * @param programme programme for test
 
49
     *
 
50
     * @return true if matched
51
51
     */
52
52
    public boolean matches( final TVProgramme programme )
53
53
    {
56
56
                && ( programmeTime == programme.getStart(  ) ) )
57
57
        {
58
58
            return true;
59
 
 
60
59
        }
61
60
 
62
61
        return false;