|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.hibernate.internal.jaxb.mapping.hbm.JaxbJoinElement
public class JaxbJoinElement
Java class for join-element complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="join-element">
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<element name="subselect" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
<element name="comment" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
<element name="key" type="{http://www.hibernate.org/xsd/hibernate-mapping}key-element"/>
<choice maxOccurs="unbounded" minOccurs="0">
<element name="property" type="{http://www.hibernate.org/xsd/hibernate-mapping}property-element"/>
<element name="many-to-one" type="{http://www.hibernate.org/xsd/hibernate-mapping}many-to-one-element"/>
<element name="component" type="{http://www.hibernate.org/xsd/hibernate-mapping}component-element"/>
<element name="dynamic-component" type="{http://www.hibernate.org/xsd/hibernate-mapping}dynamic-component-element"/>
<element name="any" type="{http://www.hibernate.org/xsd/hibernate-mapping}any-element"/>
</choice>
<element name="sql-insert" type="{http://www.hibernate.org/xsd/hibernate-mapping}sql-insert-element" minOccurs="0"/>
<element name="sql-update" type="{http://www.hibernate.org/xsd/hibernate-mapping}sql-update-element" minOccurs="0"/>
<element name="sql-delete" type="{http://www.hibernate.org/xsd/hibernate-mapping}sql-delete-element" minOccurs="0"/>
</sequence>
<attribute name="catalog" type="{http://www.w3.org/2001/XMLSchema}string" />
<attribute name="fetch" type="{http://www.hibernate.org/xsd/hibernate-mapping}fetch-attribute" default="join" />
<attribute name="inverse" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
<attribute name="optional" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
<attribute name="schema" type="{http://www.w3.org/2001/XMLSchema}string" />
<attribute name="subselect" type="{http://www.w3.org/2001/XMLSchema}string" />
<attribute name="table" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
</restriction>
</complexContent>
</complexType>
| Field Summary | |
|---|---|
protected String |
catalog
|
protected String |
comment
|
protected JaxbFetchAttribute |
fetch
|
protected Boolean |
inverse
|
protected JaxbKeyElement |
key
|
protected Boolean |
optional
|
protected List<Object> |
propertyOrManyToOneOrComponent
|
protected String |
schema
|
protected JaxbSqlDeleteElement |
sqlDelete
|
protected JaxbSqlInsertElement |
sqlInsert
|
protected JaxbSqlUpdateElement |
sqlUpdate
|
protected String |
subselect
|
protected String |
subselectAttribute
|
protected String |
table
|
| Constructor Summary | |
|---|---|
JaxbJoinElement()
|
|
| Method Summary | |
|---|---|
String |
getCatalog()
Gets the value of the catalog property. |
String |
getComment()
Gets the value of the comment property. |
JaxbFetchAttribute |
getFetch()
Gets the value of the fetch property. |
JaxbKeyElement |
getKey()
Gets the value of the key property. |
List<Object> |
getPropertyOrManyToOneOrComponent()
Gets the value of the propertyOrManyToOneOrComponent property. |
String |
getSchema()
Gets the value of the schema property. |
JaxbSqlDeleteElement |
getSqlDelete()
Gets the value of the sqlDelete property. |
JaxbSqlInsertElement |
getSqlInsert()
Gets the value of the sqlInsert property. |
JaxbSqlUpdateElement |
getSqlUpdate()
Gets the value of the sqlUpdate property. |
String |
getSubselect()
Gets the value of the subselect property. |
String |
getSubselectAttribute()
Gets the value of the subselectAttribute property. |
String |
getTable()
Gets the value of the table property. |
boolean |
isInverse()
Gets the value of the inverse property. |
boolean |
isOptional()
Gets the value of the optional property. |
void |
setCatalog(String value)
Sets the value of the catalog property. |
void |
setComment(String value)
Sets the value of the comment property. |
void |
setFetch(JaxbFetchAttribute value)
Sets the value of the fetch property. |
void |
setInverse(Boolean value)
Sets the value of the inverse property. |
void |
setKey(JaxbKeyElement value)
Sets the value of the key property. |
void |
setOptional(Boolean value)
Sets the value of the optional property. |
void |
setSchema(String value)
Sets the value of the schema property. |
void |
setSqlDelete(JaxbSqlDeleteElement value)
Sets the value of the sqlDelete property. |
void |
setSqlInsert(JaxbSqlInsertElement value)
Sets the value of the sqlInsert property. |
void |
setSqlUpdate(JaxbSqlUpdateElement value)
Sets the value of the sqlUpdate property. |
void |
setSubselect(String value)
Sets the value of the subselect property. |
void |
setSubselectAttribute(String value)
Sets the value of the subselectAttribute property. |
void |
setTable(String value)
Sets the value of the table property. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
|---|
protected String subselect
protected String comment
protected JaxbKeyElement key
protected List<Object> propertyOrManyToOneOrComponent
protected JaxbSqlInsertElement sqlInsert
protected JaxbSqlUpdateElement sqlUpdate
protected JaxbSqlDeleteElement sqlDelete
protected String catalog
protected JaxbFetchAttribute fetch
protected Boolean inverse
protected Boolean optional
protected String schema
protected String subselectAttribute
protected String table
| Constructor Detail |
|---|
public JaxbJoinElement()
| Method Detail |
|---|
public String getSubselect()
Stringpublic void setSubselect(String value)
value - allowed object is
Stringpublic String getComment()
Stringpublic void setComment(String value)
value - allowed object is
Stringpublic JaxbKeyElement getKey()
JaxbKeyElementpublic void setKey(JaxbKeyElement value)
value - allowed object is
JaxbKeyElementpublic List<Object> getPropertyOrManyToOneOrComponent()
This accessor method returns a reference to the live list,
not a snapshot. Therefore any modification you make to the
returned list will be present inside the JAXB object.
This is why there is not a set method for the propertyOrManyToOneOrComponent property.
For example, to add a new item, do as follows:
getPropertyOrManyToOneOrComponent().add(newItem);
Objects of the following type(s) are allowed in the list
JaxbManyToOneElement
JaxbAnyElement
JaxbComponentElement
JaxbPropertyElement
JaxbDynamicComponentElement
public JaxbSqlInsertElement getSqlInsert()
JaxbSqlInsertElementpublic void setSqlInsert(JaxbSqlInsertElement value)
value - allowed object is
JaxbSqlInsertElementpublic JaxbSqlUpdateElement getSqlUpdate()
JaxbSqlUpdateElementpublic void setSqlUpdate(JaxbSqlUpdateElement value)
value - allowed object is
JaxbSqlUpdateElementpublic JaxbSqlDeleteElement getSqlDelete()
JaxbSqlDeleteElementpublic void setSqlDelete(JaxbSqlDeleteElement value)
value - allowed object is
JaxbSqlDeleteElementpublic String getCatalog()
Stringpublic void setCatalog(String value)
value - allowed object is
Stringpublic JaxbFetchAttribute getFetch()
JaxbFetchAttributepublic void setFetch(JaxbFetchAttribute value)
value - allowed object is
JaxbFetchAttributepublic boolean isInverse()
Booleanpublic void setInverse(Boolean value)
value - allowed object is
Booleanpublic boolean isOptional()
Booleanpublic void setOptional(Boolean value)
value - allowed object is
Booleanpublic String getSchema()
Stringpublic void setSchema(String value)
value - allowed object is
Stringpublic String getSubselectAttribute()
Stringpublic void setSubselectAttribute(String value)
value - allowed object is
Stringpublic String getTable()
Stringpublic void setTable(String value)
value - allowed object is
String
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||