Class ConstructorResult
- java.lang.Object
-
- org.hibernate.jpamodelgen.xml.jaxb.ConstructorResult
-
public class ConstructorResult extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description protected java.util.List<ColumnResult>
column
protected java.lang.String
targetClass
-
Constructor Summary
Constructors Constructor Description ConstructorResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<ColumnResult>
getColumn()
Gets the value of the column property.java.lang.String
getTargetClass()
Gets the value of the targetClass property.void
setTargetClass(java.lang.String value)
Sets the value of the targetClass property.
-
-
-
Field Detail
-
column
protected java.util.List<ColumnResult> column
-
targetClass
protected java.lang.String targetClass
-
-
Method Detail
-
getColumn
public java.util.List<ColumnResult> getColumn()
Gets the value of the column property.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 column property.For example, to add a new item, do as follows:
getColumn().add(newItem);
Objects of the following type(s) are allowed in the list
ColumnResult
-
getTargetClass
public java.lang.String getTargetClass()
Gets the value of the targetClass property.- Returns:
- possible object is
String
-
setTargetClass
public void setTargetClass(java.lang.String value)
Sets the value of the targetClass property.- Parameters:
value
- allowed object isString
-
-