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 java.util.List<JaxbBasic>getBasic()java.util.List<JaxbElementCollection>getElementCollection()java.util.List<JaxbEmbedded>getEmbedded()java.util.List<JaxbManyToMany>getManyToMany()java.util.List<JaxbManyToOne>getManyToOne()java.util.List<JaxbOneToMany>getOneToMany()java.util.List<JaxbOneToOne>getOneToOne()java.util.List<JaxbTransient>getTransient()
-
-
-
Method Detail
-
getTransient
java.util.List<JaxbTransient> getTransient()
-
getBasic
java.util.List<JaxbBasic> getBasic()
-
getElementCollection
java.util.List<JaxbElementCollection> getElementCollection()
-
getEmbedded
java.util.List<JaxbEmbedded> getEmbedded()
-
getManyToMany
java.util.List<JaxbManyToMany> getManyToMany()
-
getManyToOne
java.util.List<JaxbManyToOne> getManyToOne()
-
getOneToMany
java.util.List<JaxbOneToMany> getOneToMany()
-
getOneToOne
java.util.List<JaxbOneToOne> getOneToOne()
-
-