blob: 1217e75bc0d7b8e6d91af8e69358c574dab64dbb [file] [log] [blame]
/*
* Copyright (c) 1998, 2021 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 v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0,
* or the Eclipse Distribution License v. 1.0 which is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause
*/
// Contributors:
// Oracle - initial API and implementation from Oracle TopLink
package org.eclipse.persistence.testing.tests.queries;
import org.eclipse.persistence.tools.schemaframework.*;
public class Country {
public String name;
public static Country canada;
public static Country usa;
public static Country greece;
/**
* This method was created in VisualAge.
* @return org.eclipse.persistence.testing.tests.queries.Country
*/
public static Country billingCountry1() {
Country example = new Country();
example.setName("USA");
return example;
}
/**
* TopLink generated method.
* <b>WARNING</b>: This code was generated by an automated tool.
* Any changes will be lost when the code is re-generated
*/
public static TableDefinition buildCOUNTRYTable() {
org.eclipse.persistence.tools.schemaframework.TableDefinition tabledefinition = new org.eclipse.persistence.tools.schemaframework.TableDefinition();
// SECTION: TABLE
tabledefinition.setName("COUNTRY");
// SECTION: FIELD
org.eclipse.persistence.tools.schemaframework.FieldDefinition field = new org.eclipse.persistence.tools.schemaframework.FieldDefinition();
field.setName("NAME");
field.setTypeName("VARCHAR");
field.setShouldAllowNull(false);
field.setIsPrimaryKey(true);
field.setUnique(false);
field.setIsIdentity(false);
tabledefinition.addField(field);
return tabledefinition;
}
public static Country canada() {
Country country = new Country();
country.setName("Canada");
canada = country;
return canada;
}
public static Country greece() {
Country country = new Country();
country.setName("Greece");
greece = country;
return greece;
}
/**
* This method was created in VisualAge.
*/
public void setName(String countryName) {
name = countryName;
}
public static Country usa() {
Country country = new Country();
country.setName("USA");
usa = country;
return usa;
}
}