//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v1.0
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2003.12.04 at 12:38:18 PST
//
package org.jaffa.patterns.library.object_lookup_meta_2_0.domain;
/**
* Java content class for keyField complex type.
* <p>The following schema fragment specifies the expected content contained within this java content object.
* <p>
* <pre>
* <complexType name="keyField">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="ResultsFieldName" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="DataType" type="{}dataTypes"/>
* <element name="FieldNameInTargetComponent" type="{http://www.w3.org/2001/XMLSchema}string"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*/
public interface KeyField {
java.lang.String getDataType();
void setDataType(java.lang.String value);
java.lang.String getResultsFieldName();
void setResultsFieldName(java.lang.String value);
java.lang.String getFieldNameInTargetComponent();
void setFieldNameInTargetComponent(java.lang.String value);
}
|