blob: c4523391d6b52e65305da94eb5b725309ab8f3ff [file] [log] [blame]
/*
* Copyright 2005 The Apache Software Foundation.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.jdo.pc;
import java.util.HashSet;
/**
* A sample project class, generated from an SQL schema.
*/
public class PCProject {
public long projid;
public String name;
public java.util.HashSet employees;
public String toString() {
return "PCProject: " + name + ", id=" + projid +
", emps: " + employees.size();
}
public PCProject() {
}
public PCProject(long _projid, String _name) {
projid = _projid;
name = _name;
}
public long getProjid() {
return projid;
}
public void setProjid(long projid) {
this. projid = projid;
}
public String getName() {
return name;
}
public void setName(String name) {
this. name = name;
}
public java.util.HashSet getEmployees() {
return employees;
}
public void setEmployees(java.util.HashSet employees) {
this. employees = employees;
}
public static class Oid {
public long projid;
public Oid() {
}
public boolean equals(java.lang.Object obj) {
if( obj==null ||
!this.getClass().equals(obj.getClass()) ) return( false );
Oid o=(Oid) obj;
if( this.projid!=o.projid ) return( false );
return( true );
}
public int hashCode() {
int hashCode=0;
hashCode += projid;
return( hashCode );
}
}
}