net.sourceforge.ccxjc.it.model.prot.indexed.valueclass.spring.aop
Class AspectType

java.lang.Object
  extended by net.sourceforge.ccxjc.it.model.prot.indexed.valueclass.spring.aop.AspectType
All Implemented Interfaces:
Serializable, Cloneable

public class AspectType
extends Object
implements Serializable, Cloneable

Java class for aspectType complex type.

The following schema fragment specifies the expected content contained within this class.

 <complexType name="aspectType">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <choice maxOccurs="unbounded" minOccurs="0">
         <element name="pointcut" type="{http://www.springframework.org/schema/aop}pointcutType"/>
         <element name="declare-parents" type="{http://www.springframework.org/schema/aop}declareParentsType"/>
         <element name="before" type="{http://www.springframework.org/schema/aop}basicAdviceType"/>
         <element name="after" type="{http://www.springframework.org/schema/aop}basicAdviceType"/>
         <element name="after-returning" type="{http://www.springframework.org/schema/aop}afterReturningAdviceType"/>
         <element name="after-throwing" type="{http://www.springframework.org/schema/aop}afterThrowingAdviceType"/>
         <element name="around" type="{http://www.springframework.org/schema/aop}basicAdviceType"/>
       </choice>
       <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}ID" />
       <attribute name="ref" type="{http://www.w3.org/2001/XMLSchema}string" />
       <attribute name="order" type="{http://www.w3.org/2001/XMLSchema}int" />
     </restriction>
   </complexContent>
 </complexType>
 

See Also:
Serialized Form

Field Summary
protected  String id
           
protected  Integer order
           
protected  javax.xml.bind.JAXBElement<?>[] pointcutOrDeclareParentsOrBefore
           
protected  String ref
           
 
Constructor Summary
AspectType()
          Creates a new net.sourceforge.ccxjc.it.model.prot.indexed.valueclass.spring.aop.AspectType instance.
AspectType(AspectType o)
          Creates a new net.sourceforge.ccxjc.it.model.prot.indexed.valueclass.spring.aop.AspectType instance by copying a given instance.
 
Method Summary
 AspectType clone()
          Creates and returns a copy of this object.
protected  void copyPointcutOrDeclareParentsOrBefore(javax.xml.bind.JAXBElement<?>[] source)
          Copies all values of property PointcutOrDeclareParentsOrBefore.
 String getId()
          Gets the value of the id property.
 Integer getOrder()
          Gets the value of the order property.
 javax.xml.bind.JAXBElement<?>[] getPointcutOrDeclareParentsOrBefore()
           
 javax.xml.bind.JAXBElement<?> getPointcutOrDeclareParentsOrBefore(int idx)
           
 int getPointcutOrDeclareParentsOrBeforeLength()
           
 String getRef()
          Gets the value of the ref property.
 void setId(String value)
          Sets the value of the id property.
 void setOrder(Integer value)
          Sets the value of the order property.
 javax.xml.bind.JAXBElement<?> setPointcutOrDeclareParentsOrBefore(int idx, javax.xml.bind.JAXBElement<?> value)
           
 void setPointcutOrDeclareParentsOrBefore(javax.xml.bind.JAXBElement<?>[] values)
           
 void setRef(String value)
          Sets the value of the ref property.
 
Methods inherited from class java.lang.Object
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

pointcutOrDeclareParentsOrBefore

protected javax.xml.bind.JAXBElement<?>[] pointcutOrDeclareParentsOrBefore

id

protected String id

ref

protected String ref

order

protected Integer order
Constructor Detail

AspectType

public AspectType()
Creates a new net.sourceforge.ccxjc.it.model.prot.indexed.valueclass.spring.aop.AspectType instance.


AspectType

public AspectType(AspectType o)
Creates a new net.sourceforge.ccxjc.it.model.prot.indexed.valueclass.spring.aop.AspectType instance by copying a given instance.

Parameters:
o - The instance to copy or null.
Method Detail

getPointcutOrDeclareParentsOrBefore

public javax.xml.bind.JAXBElement<?>[] getPointcutOrDeclareParentsOrBefore()
Returns:
array of JAXBElement<BasicAdviceType> JAXBElement<AfterThrowingAdviceType> JAXBElement<BasicAdviceType> JAXBElement<DeclareParentsType> JAXBElement<BasicAdviceType> JAXBElement<PointcutType> JAXBElement<AfterReturningAdviceType>

getPointcutOrDeclareParentsOrBefore

public javax.xml.bind.JAXBElement<?> getPointcutOrDeclareParentsOrBefore(int idx)
Returns:
one of JAXBElement<BasicAdviceType> JAXBElement<AfterThrowingAdviceType> JAXBElement<BasicAdviceType> JAXBElement<DeclareParentsType> JAXBElement<BasicAdviceType> JAXBElement<PointcutType> JAXBElement<AfterReturningAdviceType>

getPointcutOrDeclareParentsOrBeforeLength

public int getPointcutOrDeclareParentsOrBeforeLength()

setPointcutOrDeclareParentsOrBefore

public void setPointcutOrDeclareParentsOrBefore(javax.xml.bind.JAXBElement<?>[] values)
Parameters:
values - allowed objects are JAXBElement<BasicAdviceType> JAXBElement<AfterThrowingAdviceType> JAXBElement<BasicAdviceType> JAXBElement<DeclareParentsType> JAXBElement<BasicAdviceType> JAXBElement<PointcutType> JAXBElement<AfterReturningAdviceType>

setPointcutOrDeclareParentsOrBefore

public javax.xml.bind.JAXBElement<?> setPointcutOrDeclareParentsOrBefore(int idx,
                                                                         javax.xml.bind.JAXBElement<?> value)
Parameters:
value - allowed object is JAXBElement<BasicAdviceType> JAXBElement<AfterThrowingAdviceType> JAXBElement<BasicAdviceType> JAXBElement<DeclareParentsType> JAXBElement<BasicAdviceType> JAXBElement<PointcutType> JAXBElement<AfterReturningAdviceType>

getId

public String getId()
Gets the value of the id property.

Returns:
possible object is String

setId

public void setId(String value)
Sets the value of the id property.

Parameters:
value - allowed object is String

getRef

public String getRef()
Gets the value of the ref property.

Returns:
possible object is String

setRef

public void setRef(String value)
Sets the value of the ref property.

Parameters:
value - allowed object is String

getOrder

public Integer getOrder()
Gets the value of the order property.

Returns:
possible object is Integer

setOrder

public void setOrder(Integer value)
Sets the value of the order property.

Parameters:
value - allowed object is Integer

copyPointcutOrDeclareParentsOrBefore

protected void copyPointcutOrDeclareParentsOrBefore(javax.xml.bind.JAXBElement<?>[] source)
Copies all values of property PointcutOrDeclareParentsOrBefore.

Parameters:
source - The source to copy from.
Throws:
NullPointerException - if source is null.

clone

public AspectType clone()
Creates and returns a copy of this object.

Overrides:
clone in class Object
Returns:
A clone of this instance.


Copyright © 2009 The CC-XJC Community. All Rights Reserved.