Interface AttributesContainer
-
- All Known Implementing Classes:
JaxbAttributes,JaxbEmbeddableAttributes
public interface AttributesContainerCommon interface for JAXB bindings which are containers of attributes.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<JaxbBasic>getBasic()List<JaxbElementCollection>getElementCollection()List<JaxbEmbedded>getEmbedded()List<JaxbManyToMany>getManyToMany()List<JaxbManyToOne>getManyToOne()List<JaxbOneToMany>getOneToMany()List<JaxbOneToOne>getOneToOne()List<JaxbTransient>getTransient()
-
-
-
Method Detail
-
getTransient
List<JaxbTransient> getTransient()
-
getElementCollection
List<JaxbElementCollection> getElementCollection()
-
getEmbedded
List<JaxbEmbedded> getEmbedded()
-
getManyToMany
List<JaxbManyToMany> getManyToMany()
-
getManyToOne
List<JaxbManyToOne> getManyToOne()
-
getOneToMany
List<JaxbOneToMany> getOneToMany()
-
getOneToOne
List<JaxbOneToOne> getOneToOne()
-
-