blob: e0d5acc91a0f637b48b195224d31dde46ecad994 [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.
*
* Contributor:
* Andrei Ilitchev - bug 248858: Problem with Multiple tables in EclipseLink.
******************************************************************************/
package org.eclipse.persistence.testing.models.multipletable;
public class SuperHorse extends Horse {
protected int speed;
public SuperHorse() {
super();
}
public int getSpeed() {
return speed;
}
public void setSpeed(int speed) {
this.speed = speed;
}
public static SuperHorse getSuperHorse1(){
SuperHorse horse = new SuperHorse();
horse.setAge(1);
horse.setFoalCount(3);
horse.setName("Mr. Red");
horse.setWeight(600);
horse.setSpeed(50);
return horse;
}
}