blob: 003fa4f27eb2ee158990f2ca483bd19343a17a7c [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.models.interfaces;
import org.eclipse.persistence.tools.schemaframework.*;
public class ProductDeveloper extends DevelopmentJob {
public String product;
public static ProductDeveloper example1() {
ProductDeveloper example = new ProductDeveloper();
example.setProduct("Quake 2 Maps");
example.setSalary(new Float(145000.00));
return example;
}
public static ProductDeveloper example2() {
ProductDeveloper example = new ProductDeveloper();
example.setProduct("Trinity Operating System");
example.setSalary(new Float(85000.00));
return example;
}
public static ProductDeveloper example3() {
ProductDeveloper example = new ProductDeveloper();
example.setProduct("Ada For Dummies");
example.setSalary(new Float(80000.00));
return example;
}
public String getProduct() {
return product;
}
public static TableDefinition productDeveloperTable() {
TableDefinition table = new TableDefinition();
table.setName("PRD_DEV");
table.addField("CODE", java.math.BigDecimal.class, 15);
table.addField("PRODUCT", String.class, 30);
return table;
}
public void setProduct(String product) {
this.product = product;
}
public String toString() {
return new String("Product Developer: " + getJobCode());
}
}