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 class
Component.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 Integer
getBasicInteger()
Long
getBasicLong()
int
getBasicPrimitiveInt()
String
getBasicString()
Component.Nested
getNested()
void
setBasicInteger(Integer basicInteger)
void
setBasicLong(Long basicLong)
void
setBasicPrimitiveInt(int basicPrimitiveInt)
void
setBasicString(String basicString)
void
setNested(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)
-
-