blob: a157b0b45714e8ad48d2d9b55aed566c1c6487a0 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 1998, 2013 Oracle and/or its affiliates. All rights reserved.
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v1.0 and Eclipse Distribution License v. 1.0
* which accompanies this distribution.
* The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v10.html
* and the Eclipse Distribution License is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* Contributors:
* Oracle - initial API and implementation from Oracle TopLink
******************************************************************************/
package org.eclipse.persistence.testing.tests.proxyindirection;
/*
* Project implementation.
*
* Implementation of the Cubicle interface.
*
* @author Rick Barkhouse
* @since 08/23/2000 16:37:59
*/
public class ProjectImpl implements Project {
public int id;
public String name;
public String description;
public String getDescription() {
return this.description;
}
public int getID() {
return this.id;
}
public String getName() {
return this.name;
}
public void setDescription(String value) {
this.description = value;
}
public void setID(int value) {
this.id = value;
}
public void setName(String value) {
this.name = value;
}
public String toString() {
return "[Project #" + getID() + "] " + getName() + " - " + getDescription();
}
}