/******************************************************************************* * Copyright (c) 1998, 2015 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: * dclarke - initial JPA Employee example using XML (bug 217884) * mbraeuer - annotated version ******************************************************************************/ package org.eclipse.persistence.testing.perf.jpa.model.basic; import java.util.Calendar; import javax.persistence.Basic; import javax.persistence.Entity; import javax.persistence.Table; import javax.persistence.Temporal; import javax.persistence.TemporalType; /** * The LargeProject class demonstrates usage of JOINED inheritance. */ @Entity @Table(name = "P2_LPROJECT") public class LargeProject extends Project { @Basic private double budget; @Basic @Temporal(TemporalType.TIMESTAMP) private Calendar milestone = Calendar.getInstance(); public LargeProject() { super(); } public double getBudget() { return this.budget; } public void setBudget(double budget) { this.budget = budget; } public Calendar getMilestone() { return milestone; } public void setMilestone(Calendar milestone) { this.milestone = milestone; } }