Subversion Repositories HomeAutomation

Rev

Go to most recent revision | Details | Last modification | View Log | SVN | RSS feed

Rev Author Line No. Line
15 arune 1
/*
2
 * File created by arune
3
 * at 2004-dec
4
 */
5
package Macbeth.Modules.modTVchart;
6
import java.util.*;
7
 
8
/**
9
 *
10
 *
11
 *
12
 * @author arune
13
 */
14
public class ChannelObject {
15
 
16
    public int tvchannel;
17
    public int id;
18
    public String longname;
19
    public String shortname;
20
    public ArrayList channelData = new ArrayList();
21
 
22
    /**
23
     * Creates a new instance of ChannelObject.
24
     * @param shortname A three character long name of this object.
25
     * @param longname The node-address at where this object is.
26
     * @param tvchannel .
27
     * @param id .
28
     */
29
    public ChannelObject(String shortname, String longname, int tvchannel, int id) {
30
        this.longname = longname;
31
        this.shortname = shortname;
32
        this.tvchannel = tvchannel;
33
        this.id = id;
34
    }
35
 
36
}