samyedit
Class Channel
java.lang.Object
samyedit.Channel
- All Implemented Interfaces:
- java.lang.Cloneable
- Direct Known Subclasses:
- AirCableChannel, CloneChannel, SatChannel
public class Channel
- extends java.lang.Object
- implements java.lang.Cloneable
new Channel class,
made it cloneable if we need to copy a channel
|
Method Summary |
Channel |
clone()
clone function, if a channel needs to be copied
just invoke clone() from Object class |
java.lang.String |
toString()
prints the content of the channel into a string |
| Methods inherited from class java.lang.Object |
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait |
TYPE_CABLE
public static final byte TYPE_CABLE
- See Also:
- Constant Field Values
TYPE_AIR
public static final byte TYPE_AIR
- See Also:
- Constant Field Values
TYPE_SAT
public static final byte TYPE_SAT
- See Also:
- Constant Field Values
TYPE_CLONE
public static final byte TYPE_CLONE
- See Also:
- Constant Field Values
STYPE_TV
public static final byte STYPE_TV
- See Also:
- Constant Field Values
STYPE_RADIO
public static final byte STYPE_RADIO
- See Also:
- Constant Field Values
STYPE_DATA
public static final byte STYPE_DATA
- See Also:
- Constant Field Values
STYPE_HD
public static final byte STYPE_HD
- See Also:
- Constant Field Values
VTYPE_MPEG2
public static final byte VTYPE_MPEG2
- See Also:
- Constant Field Values
VTYPE_MPEG4
public static final byte VTYPE_MPEG4
- See Also:
- Constant Field Values
FLAG_ACTIVE
public static final byte FLAG_ACTIVE
- See Also:
- Constant Field Values
FLAG_SCRAMBLED
public static final byte FLAG_SCRAMBLED
- See Also:
- Constant Field Values
FLAG_LOCK
public static final byte FLAG_LOCK
- See Also:
- Constant Field Values
FLAG_FAV_1
public static final byte FLAG_FAV_1
- See Also:
- Constant Field Values
FLAG_FAV_2
public static final byte FLAG_FAV_2
- See Also:
- Constant Field Values
FLAG_FAV_3
public static final byte FLAG_FAV_3
- See Also:
- Constant Field Values
FLAG_FAV_4
public static final byte FLAG_FAV_4
- See Also:
- Constant Field Values
name
public java.lang.String name
num
public int num
sid
public int sid
vpid
public int vpid
mpid
public int mpid
bouqet
public int bouqet
onid
public int onid
tsid
public int tsid
stype
public byte stype
vtype
public byte vtype
status
public byte status
enc
public byte enc
fav
public byte fav
fav79
public byte fav79
lock
public byte lock
Channel
public Channel()
toString
public java.lang.String toString()
- prints the content of the channel into a string
- Overrides:
toString in class java.lang.Object
clone
public Channel clone()
- clone function, if a channel needs to be copied
just invoke clone() from Object class
- Overrides:
clone in class java.lang.Object