~ubuntu-branches/ubuntu/trusty/mediathekview/trusty

« back to all changes in this revision

Viewing changes to src/mediathek/tool/CellRendererProgramme.java

  • Committer: Package Import Robot
  • Author(s): Markus Koschany
  • Date: 2014-01-07 17:25:52 UTC
  • mfrom: (4.1.6 sid)
  • Revision ID: package-import@ubuntu.com-20140107172552-vkv6uixpou3sa5og
Tags: 4-1
* Imported Upstream version 4.
* Declare compliance with Standards-Version 3.9.5.
* Correct a mistake in the last changelog entry.
  - build-dependencies <-> dependencies
* Override lintian warning:incompatible-java-bytecode-format Java7 because
  Java7 is the current default JRE for Jessie. MediathekView also requires
  Java7 to run and is incompatible with Java6 or earlier.
* debian/control: Add libjackson2-core-java, libtimingframework-java and
  libxz-java to Build-Depends-Indep.
* Drop README.source. Now upstream provides a source tarball.
* Refresh modify-ant-build-system.patch.
* debian/rules: Remove get-orig-source target. No longer needed.
* Update mediathekview.manifest. Add new required libraries to classpath.
* Update debian/watch for new versioning scheme.
* Update debian/copyright for new release. Add BSD-3-clause license.
* Update man pages and remove unsupported options.

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
 */
20
20
package mediathek.tool;
21
21
 
 
22
import mediathek.controller.Log;
22
23
import java.awt.Component;
23
24
import javax.swing.JTable;
24
25
import javax.swing.table.DefaultTableCellRenderer;
25
 
import mediathek.daten.DDaten;
 
26
import mediathek.daten.Daten;
26
27
import mediathek.daten.DatenProg;
27
28
import mediathek.res.GetIcon;
28
29
 
29
30
public class CellRendererProgramme extends DefaultTableCellRenderer {
30
31
 
31
 
    DDaten daten;
 
32
    Daten daten;
32
33
 
33
 
    public CellRendererProgramme(DDaten d) {
 
34
    public CellRendererProgramme(Daten d) {
34
35
        daten = d;
35
36
    }
36
37