blob: 12f32176e657b5ebf008c592e0b87d75bce81d19 [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:
* Mike Norman - from Proof-of-concept, become production code
******************************************************************************/
package dbws.testing.shadowddlgeneration.oldjpub;
//javase imports
import java.util.List;
public class JavaBaseType extends JavaType {
protected List<AttributeField> m_fields;
protected List<ProcedureMethod> m_methods;
/* Create a predefined Java type */
public JavaBaseType(String typeName, List<AttributeField> fields, List<ProcedureMethod> methods,
TypeClass sqlType) {
super(typeName, sqlType);
m_fields = fields;
m_methods = methods;
// System.out.println("[JavaBaseType] " + m_fields.length); //D+
};
/* Create an added Java type */
public JavaBaseType(JavaName javaName, List<AttributeField> fields, List<ProcedureMethod> methods,
TypeClass sqlType) {
super(javaName, sqlType);
m_fields = fields;
m_methods = methods;
// System.out.println("[JavaBaseType] " + m_fields.length); //D+
};
public List<AttributeField> getFields(boolean publishedOnly) {
return m_fields;
}
public List<AttributeField> getDeclaredFields(boolean publishedOnly) {
return m_fields;
}
public List<ProcedureMethod> getDeclaredMethods() {
return m_methods;
}
public boolean hasFields() {
return m_fields != null && m_fields.size() > 0;
}
public boolean hasMethods() {
return m_methods != null && m_methods.size() > 0;
}
}