2 * Copyright 2006 the original author or authors.
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
8 * http://www.apache.org/licenses/LICENSE-2.0
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
17 package org.wamblee.mythtv;
19 import javax.persistence.Column;
20 import javax.persistence.Entity;
21 import javax.persistence.Id;
22 import javax.persistence.Table;
28 @Table(name="channel")
29 public class Channel {
43 @Column(name="chanid")
49 * @param aId the id to set
51 public void setId(int aId) {
59 public String getName() {
64 * @param aName the name to set
66 public void setName(String aName) {
71 * @see java.lang.Object#toString()
74 public String toString() {
75 return "Channel(" + _id + "," + _name + ")";
79 * @see java.lang.Object#equals(java.lang.Object)
82 public boolean equals(Object aObj) {
83 if ( !(aObj instanceof Channel)) {
86 Channel recording = (Channel)aObj;
87 return _id == recording._id;
91 * @see java.lang.Object#hashCode()
94 public int hashCode() {