public class EntityListeners extends Object
@Target({TYPE}) @Retention(RUNTIME) public @interface EntityListeners { Class[] value(); }
<p>Java class for entity-listeners complex type.
<p>The following schema fragment specifies the expected content contained within this class.
<pre> <complexType name="entity-listeners"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="entity-listener" type="{http://xmlns.jcp.org/xml/ns/persistence/orm}entity-listener" maxOccurs="unbounded" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType> </pre>
| Modifier and Type | Field and Description |
|---|---|
protected List<EntityListener> |
entityListener |
| Constructor and Description |
|---|
EntityListeners() |
| Modifier and Type | Method and Description |
|---|---|
List<EntityListener> |
getEntityListener()
Gets the value of the entityListener property.
|
protected List<EntityListener> entityListener
public List<EntityListener> getEntityListener()
Gets the value of the entityListener property.
<p> 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 <CODE>set</CODE> method for the entityListener property.
<p> For example, to add a new item, do as follows: <pre> getEntityListener().add(newItem); </pre>
<p>
Objects of the following type(s) are allowed in the list
EntityListener
Copyright © 2001-2018 Red Hat, Inc. All Rights Reserved.