Class Component
- java.lang.Object
-
- org.hibernate.testing.orm.domain.gambit.Component
-
@Embeddable public class Component extends Object
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classComponent.Nested
-
Constructor Summary
Constructors Constructor Description Component()Component(Integer basicInteger, Long basicLong, int basicPrimitiveInt, String basicString, Component.Nested nested)Component(String basicString, Integer basicInteger, Long basicLong, int basicPrimitiveInt, Component.Nested nested)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description IntegergetBasicInteger()LonggetBasicLong()intgetBasicPrimitiveInt()StringgetBasicString()Component.NestedgetNested()voidsetBasicInteger(Integer basicInteger)voidsetBasicLong(Long basicLong)voidsetBasicPrimitiveInt(int basicPrimitiveInt)voidsetBasicString(String basicString)voidsetNested(Component.Nested nested)
-
-
-
Constructor Detail
-
Component
public Component()
-
Component
public Component(String basicString, Integer basicInteger, Long basicLong, int basicPrimitiveInt, Component.Nested nested)
-
Component
public Component(Integer basicInteger, Long basicLong, int basicPrimitiveInt, String basicString, Component.Nested nested)
-
-
Method Detail
-
getBasicString
public String getBasicString()
-
setBasicString
public void setBasicString(String basicString)
-
getBasicInteger
public Integer getBasicInteger()
-
setBasicInteger
public void setBasicInteger(Integer basicInteger)
-
getBasicLong
public Long getBasicLong()
-
setBasicLong
public void setBasicLong(Long basicLong)
-
getBasicPrimitiveInt
public int getBasicPrimitiveInt()
-
setBasicPrimitiveInt
public void setBasicPrimitiveInt(int basicPrimitiveInt)
-
getNested
public Component.Nested getNested()
-
setNested
public void setNested(Component.Nested nested)
-
-