org.ow2.jonas.lib.ejb21.jorm
Class GenClassElement

java.lang.Object
  extended by org.ow2.jonas.lib.ejb21.jorm.GenClassElement
All Implemented Interfaces:
org.objectweb.jorm.api.PIndexedElem
Direct Known Subclasses:
CollectionElement

public class GenClassElement
extends Object
implements org.objectweb.jorm.api.PIndexedElem

This class is a basic implementation of the PIndexedElem interface used by the GenClassImpl class. This implementation manages only references (no primitive elements).

Author:
S.Chassande-Barrioz

Field Summary
 GenClassImpl gc
          This field references the GenClass inside which the PIndexedElem is store.
 boolean hasBeenCreated
           
 org.objectweb.jorm.naming.api.PName pname
          This field references the associated pname.
 byte status
          This field describes the status of the PIndexedElem in according to the constant defined in the PIndexedElem interface.
 PObject value
          This field references the user object.
 
Fields inherited from interface org.objectweb.jorm.api.PIndexedElem
ELEM_CREATED, ELEM_DELETED, ELEM_MODIFIED, ELEM_UNMODIFIED
 
Constructor Summary
GenClassElement(GenClassImpl gc)
           
 
Method Summary
 byte getElemStatus()
           
 BigDecimal pieGetBigDecimalElem()
           
 BigInteger pieGetBigIntegerElem()
           
 boolean pieGetBooleanElem()
           
 byte[] pieGetByteArrayElem()
           
 byte pieGetByteElem()
           
 byte pieGetByteIndexField(String fn)
           
 char[] pieGetCharArrayElem()
           
 char pieGetCharElem()
           
 char pieGetCharIndexField(String fn)
           
 Date pieGetDateElem()
           
 Date pieGetDateIndexField(String fn)
           
 double pieGetDoubleElem()
           
 float pieGetFloatElem()
           
 int pieGetIntElem()
           
 int pieGetIntIndexField(String fn)
           
 long pieGetLongElem()
           
 long pieGetLongIndexField(String fn)
           
 Boolean pieGetObooleanElem()
           
 Byte pieGetObyteElem()
           
 Byte pieGetObyteIndexField(String fn)
           
 Character pieGetOcharElem()
           
 Character pieGetOcharIndexField(String fn)
           
 Double pieGetOdoubleElem()
           
 Float pieGetOfloatElem()
           
 Integer pieGetOintElem()
           
 Integer pieGetOintIndexField(String fn)
           
 Long pieGetOlongElem()
           
 Long pieGetOlongIndexField(String fn)
           
 Short pieGetOshortElem()
           
 Short pieGetOshortIndexField(String fn)
           
 org.objectweb.jorm.naming.api.PName pieGetRefElem()
           
 Serializable pieGetSerializedElem()
           
 short pieGetShortElem()
           
 short pieGetShortIndexField(String fn)
           
 String pieGetStringElem()
           
 String pieGetStringIndexField(String fn)
           
 void pieSetBigDecimalElem(BigDecimal value)
           
 void pieSetBigIntegerElem(BigInteger value)
           
 void pieSetBooleanElem(boolean value)
           
 void pieSetByteArrayElem(byte[] value)
           
 void pieSetByteElem(byte value)
           
 void pieSetByteIndexField(String fn, byte value)
           
 void pieSetCharArrayElem(char[] value)
           
 void pieSetCharElem(char value)
           
 void pieSetCharIndexField(String fn, char value)
           
 void pieSetDateElem(Date value)
           
 void pieSetDateIndexField(String fn, Date value)
           
 void pieSetDoubleElem(double value)
           
 void pieSetFloatElem(float value)
           
 void pieSetIntElem(int value)
           
 void pieSetIntIndexField(String fn, int value)
           
 void pieSetLongElem(long value)
           
 void pieSetLongIndexField(String fn, long value)
           
 void pieSetObooleanElem(Boolean value)
           
 void pieSetObyteElem(Byte value)
           
 void pieSetObyteIndexField(String fn, Byte value)
           
 void pieSetOcharElem(Character value)
           
 void pieSetOcharIndexField(String fn, Character value)
           
 void pieSetOdoubleElem(Double value)
           
 void pieSetOfloatElem(Float value)
           
 void pieSetOintElem(Integer value)
           
 void pieSetOintIndexField(String fn, Integer value)
           
 void pieSetOlongElem(Long value)
           
 void pieSetOlongIndexField(String fn, Long value)
           
 void pieSetOshortElem(Short value)
           
 void pieSetOshortIndexField(String fn, Short value)
           
 void pieSetRefElem(org.objectweb.jorm.naming.api.PName pn)
          The jorm assignes the PName of the referenced object
 void pieSetSerializedElem(Serializable value)
           
 void pieSetShortElem(short value)
           
 void pieSetShortIndexField(String fn, short value)
           
 void pieSetStringElem(String value)
           
 void pieSetStringIndexField(String fn, String value)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

status

public byte status
This field describes the status of the PIndexedElem in according to the constant defined in the PIndexedElem interface.


hasBeenCreated

public boolean hasBeenCreated

pname

public org.objectweb.jorm.naming.api.PName pname
This field references the associated pname. This field is never null after data has been loaded.


value

public PObject value
This field references the user object. This is a PObject which permits to reach its PName.


gc

public GenClassImpl gc
This field references the GenClass inside which the PIndexedElem is store.

Constructor Detail

GenClassElement

public GenClassElement(GenClassImpl gc)
Method Detail

getElemStatus

public byte getElemStatus()
Specified by:
getElemStatus in interface org.objectweb.jorm.api.PIndexedElem

pieGetRefElem

public org.objectweb.jorm.naming.api.PName pieGetRefElem()
                                                  throws org.objectweb.jorm.api.PException
Specified by:
pieGetRefElem in interface org.objectweb.jorm.api.PIndexedElem
Throws:
org.objectweb.jorm.api.PException

pieSetRefElem

public void pieSetRefElem(org.objectweb.jorm.naming.api.PName pn)
                   throws org.objectweb.jorm.api.PException
The jorm assignes the PName of the referenced object

Specified by:
pieSetRefElem in interface org.objectweb.jorm.api.PIndexedElem
Throws:
org.objectweb.jorm.api.PException

pieGetBooleanElem

public boolean pieGetBooleanElem()
                          throws org.objectweb.jorm.api.PException
Specified by:
pieGetBooleanElem in interface org.objectweb.jorm.api.PIndexedElem
Throws:
org.objectweb.jorm.api.PException

pieGetObooleanElem

public Boolean pieGetObooleanElem()
                           throws org.objectweb.jorm.api.PException
Specified by:
pieGetObooleanElem in interface org.objectweb.jorm.api.PIndexedElem
Throws:
org.objectweb.jorm.api.PException

pieGetByteElem

public byte pieGetByteElem()
                    throws org.objectweb.jorm.api.PException
Specified by:
pieGetByteElem in interface org.objectweb.jorm.api.PIndexedElem
Throws:
org.objectweb.jorm.api.PException

pieGetObyteElem

public Byte pieGetObyteElem()
                     throws org.objectweb.jorm.api.PException
Specified by:
pieGetObyteElem in interface org.objectweb.jorm.api.PIndexedElem
Throws:
org.objectweb.jorm.api.PException

pieGetByteIndexField

public byte pieGetByteIndexField(String fn)
                          throws org.objectweb.jorm.api.PException
Specified by:
pieGetByteIndexField in interface org.objectweb.jorm.api.PIndexedElem
Throws:
org.objectweb.jorm.api.PException

pieGetObyteIndexField

public Byte pieGetObyteIndexField(String fn)
                           throws org.objectweb.jorm.api.PException
Specified by:
pieGetObyteIndexField in interface org.objectweb.jorm.api.PIndexedElem
Throws:
org.objectweb.jorm.api.PException

pieGetCharElem

public char pieGetCharElem()
                    throws org.objectweb.jorm.api.PException
Specified by:
pieGetCharElem in interface org.objectweb.jorm.api.PIndexedElem
Throws:
org.objectweb.jorm.api.PException

pieGetOcharElem

public Character pieGetOcharElem()
                          throws org.objectweb.jorm.api.PException
Specified by:
pieGetOcharElem in interface org.objectweb.jorm.api.PIndexedElem
Throws:
org.objectweb.jorm.api.PException

pieGetCharIndexField

public char pieGetCharIndexField(String fn)
                          throws org.objectweb.jorm.api.PException
Specified by:
pieGetCharIndexField in interface org.objectweb.jorm.api.PIndexedElem
Throws:
org.objectweb.jorm.api.PException

pieGetOcharIndexField

public Character pieGetOcharIndexField(String fn)
                                throws org.objectweb.jorm.api.PException
Specified by:
pieGetOcharIndexField in interface org.objectweb.jorm.api.PIndexedElem
Throws:
org.objectweb.jorm.api.PException

pieGetShortElem

public short pieGetShortElem()
                      throws org.objectweb.jorm.api.PException
Specified by:
pieGetShortElem in interface org.objectweb.jorm.api.PIndexedElem
Throws:
org.objectweb.jorm.api.PException

pieGetOshortElem

public Short pieGetOshortElem()
                       throws org.objectweb.jorm.api.PException
Specified by:
pieGetOshortElem in interface org.objectweb.jorm.api.PIndexedElem
Throws:
org.objectweb.jorm.api.PException

pieGetShortIndexField

public short pieGetShortIndexField(String fn)
                            throws org.objectweb.jorm.api.PException
Specified by:
pieGetShortIndexField in interface org.objectweb.jorm.api.PIndexedElem
Throws:
org.objectweb.jorm.api.PException

pieGetOshortIndexField

public Short pieGetOshortIndexField(String fn)
                             throws org.objectweb.jorm.api.PException
Specified by:
pieGetOshortIndexField in interface org.objectweb.jorm.api.PIndexedElem
Throws:
org.objectweb.jorm.api.PException

pieGetIntElem

public int pieGetIntElem()
                  throws org.objectweb.jorm.api.PException
Specified by:
pieGetIntElem in interface org.objectweb.jorm.api.PIndexedElem
Throws:
org.objectweb.jorm.api.PException

pieGetOintElem

public Integer pieGetOintElem()
                       throws org.objectweb.jorm.api.PException
Specified by:
pieGetOintElem in interface org.objectweb.jorm.api.PIndexedElem
Throws:
org.objectweb.jorm.api.PException

pieGetIntIndexField

public int pieGetIntIndexField(String fn)
                        throws org.objectweb.jorm.api.PException
Specified by:
pieGetIntIndexField in interface org.objectweb.jorm.api.PIndexedElem
Throws:
org.objectweb.jorm.api.PException

pieGetOintIndexField

public Integer pieGetOintIndexField(String fn)
                             throws org.objectweb.jorm.api.PException
Specified by:
pieGetOintIndexField in interface org.objectweb.jorm.api.PIndexedElem
Throws:
org.objectweb.jorm.api.PException

pieGetLongElem

public long pieGetLongElem()
                    throws org.objectweb.jorm.api.PException
Specified by:
pieGetLongElem in interface org.objectweb.jorm.api.PIndexedElem
Throws:
org.objectweb.jorm.api.PException

pieGetOlongElem

public Long pieGetOlongElem()
                     throws org.objectweb.jorm.api.PException
Specified by:
pieGetOlongElem in interface org.objectweb.jorm.api.PIndexedElem
Throws:
org.objectweb.jorm.api.PException

pieGetLongIndexField

public long pieGetLongIndexField(String fn)
                          throws org.objectweb.jorm.api.PException
Specified by:
pieGetLongIndexField in interface org.objectweb.jorm.api.PIndexedElem
Throws:
org.objectweb.jorm.api.PException

pieGetOlongIndexField

public Long pieGetOlongIndexField(String fn)
                           throws org.objectweb.jorm.api.PException
Specified by:
pieGetOlongIndexField in interface org.objectweb.jorm.api.PIndexedElem
Throws:
org.objectweb.jorm.api.PException

pieGetFloatElem

public float pieGetFloatElem()
                      throws org.objectweb.jorm.api.PException
Specified by:
pieGetFloatElem in interface org.objectweb.jorm.api.PIndexedElem
Throws:
org.objectweb.jorm.api.PException

pieGetOfloatElem

public Float pieGetOfloatElem()
                       throws org.objectweb.jorm.api.PException
Specified by:
pieGetOfloatElem in interface org.objectweb.jorm.api.PIndexedElem
Throws:
org.objectweb.jorm.api.PException

pieGetDoubleElem

public double pieGetDoubleElem()
                        throws org.objectweb.jorm.api.PException
Specified by:
pieGetDoubleElem in interface org.objectweb.jorm.api.PIndexedElem
Throws:
org.objectweb.jorm.api.PException

pieGetOdoubleElem

public Double pieGetOdoubleElem()
                         throws org.objectweb.jorm.api.PException
Specified by:
pieGetOdoubleElem in interface org.objectweb.jorm.api.PIndexedElem
Throws:
org.objectweb.jorm.api.PException

pieGetStringElem

public String pieGetStringElem()
                        throws org.objectweb.jorm.api.PException
Specified by:
pieGetStringElem in interface org.objectweb.jorm.api.PIndexedElem
Throws:
org.objectweb.jorm.api.PException

pieGetStringIndexField

public String pieGetStringIndexField(String fn)
                              throws org.objectweb.jorm.api.PException
Specified by:
pieGetStringIndexField in interface org.objectweb.jorm.api.PIndexedElem
Throws:
org.objectweb.jorm.api.PException

pieGetDateElem

public Date pieGetDateElem()
                    throws org.objectweb.jorm.api.PException
Specified by:
pieGetDateElem in interface org.objectweb.jorm.api.PIndexedElem
Throws:
org.objectweb.jorm.api.PException

pieGetDateIndexField

public Date pieGetDateIndexField(String fn)
                          throws org.objectweb.jorm.api.PException
Specified by:
pieGetDateIndexField in interface org.objectweb.jorm.api.PIndexedElem
Throws:
org.objectweb.jorm.api.PException

pieGetCharArrayElem

public char[] pieGetCharArrayElem()
                           throws org.objectweb.jorm.api.PException
Specified by:
pieGetCharArrayElem in interface org.objectweb.jorm.api.PIndexedElem
Throws:
org.objectweb.jorm.api.PException

pieGetByteArrayElem

public byte[] pieGetByteArrayElem()
                           throws org.objectweb.jorm.api.PException
Specified by:
pieGetByteArrayElem in interface org.objectweb.jorm.api.PIndexedElem
Throws:
org.objectweb.jorm.api.PException

pieGetSerializedElem

public Serializable pieGetSerializedElem()
                                  throws org.objectweb.jorm.api.PException
Specified by:
pieGetSerializedElem in interface org.objectweb.jorm.api.PIndexedElem
Throws:
org.objectweb.jorm.api.PException

pieSetBooleanElem

public void pieSetBooleanElem(boolean value)
                       throws org.objectweb.jorm.api.PException
Specified by:
pieSetBooleanElem in interface org.objectweb.jorm.api.PIndexedElem
Throws:
org.objectweb.jorm.api.PException

pieSetObooleanElem

public void pieSetObooleanElem(Boolean value)
                        throws org.objectweb.jorm.api.PException
Specified by:
pieSetObooleanElem in interface org.objectweb.jorm.api.PIndexedElem
Throws:
org.objectweb.jorm.api.PException

pieSetByteElem

public void pieSetByteElem(byte value)
                    throws org.objectweb.jorm.api.PException
Specified by:
pieSetByteElem in interface org.objectweb.jorm.api.PIndexedElem
Throws:
org.objectweb.jorm.api.PException

pieSetObyteElem

public void pieSetObyteElem(Byte value)
                     throws org.objectweb.jorm.api.PException
Specified by:
pieSetObyteElem in interface org.objectweb.jorm.api.PIndexedElem
Throws:
org.objectweb.jorm.api.PException

pieSetByteIndexField

public void pieSetByteIndexField(String fn,
                                 byte value)
                          throws org.objectweb.jorm.api.PException
Specified by:
pieSetByteIndexField in interface org.objectweb.jorm.api.PIndexedElem
Throws:
org.objectweb.jorm.api.PException

pieSetObyteIndexField

public void pieSetObyteIndexField(String fn,
                                  Byte value)
                           throws org.objectweb.jorm.api.PException
Specified by:
pieSetObyteIndexField in interface org.objectweb.jorm.api.PIndexedElem
Throws:
org.objectweb.jorm.api.PException

pieSetCharElem

public void pieSetCharElem(char value)
                    throws org.objectweb.jorm.api.PException
Specified by:
pieSetCharElem in interface org.objectweb.jorm.api.PIndexedElem
Throws:
org.objectweb.jorm.api.PException

pieSetOcharElem

public void pieSetOcharElem(Character value)
                     throws org.objectweb.jorm.api.PException
Specified by:
pieSetOcharElem in interface org.objectweb.jorm.api.PIndexedElem
Throws:
org.objectweb.jorm.api.PException

pieSetCharIndexField

public void pieSetCharIndexField(String fn,
                                 char value)
                          throws org.objectweb.jorm.api.PException
Specified by:
pieSetCharIndexField in interface org.objectweb.jorm.api.PIndexedElem
Throws:
org.objectweb.jorm.api.PException

pieSetOcharIndexField

public void pieSetOcharIndexField(String fn,
                                  Character value)
                           throws org.objectweb.jorm.api.PException
Specified by:
pieSetOcharIndexField in interface org.objectweb.jorm.api.PIndexedElem
Throws:
org.objectweb.jorm.api.PException

pieSetShortElem

public void pieSetShortElem(short value)
                     throws org.objectweb.jorm.api.PException
Specified by:
pieSetShortElem in interface org.objectweb.jorm.api.PIndexedElem
Throws:
org.objectweb.jorm.api.PException

pieSetOshortElem

public void pieSetOshortElem(Short value)
                      throws org.objectweb.jorm.api.PException
Specified by:
pieSetOshortElem in interface org.objectweb.jorm.api.PIndexedElem
Throws:
org.objectweb.jorm.api.PException

pieSetShortIndexField

public void pieSetShortIndexField(String fn,
                                  short value)
                           throws org.objectweb.jorm.api.PException
Specified by:
pieSetShortIndexField in interface org.objectweb.jorm.api.PIndexedElem
Throws:
org.objectweb.jorm.api.PException

pieSetOshortIndexField

public void pieSetOshortIndexField(String fn,
                                   Short value)
                            throws org.objectweb.jorm.api.PException
Specified by:
pieSetOshortIndexField in interface org.objectweb.jorm.api.PIndexedElem
Throws:
org.objectweb.jorm.api.PException

pieSetIntElem

public void pieSetIntElem(int value)
                   throws org.objectweb.jorm.api.PException
Specified by:
pieSetIntElem in interface org.objectweb.jorm.api.PIndexedElem
Throws:
org.objectweb.jorm.api.PException

pieSetOintElem

public void pieSetOintElem(Integer value)
                    throws org.objectweb.jorm.api.PException
Specified by:
pieSetOintElem in interface org.objectweb.jorm.api.PIndexedElem
Throws:
org.objectweb.jorm.api.PException

pieSetIntIndexField

public void pieSetIntIndexField(String fn,
                                int value)
                         throws org.objectweb.jorm.api.PException
Specified by:
pieSetIntIndexField in interface org.objectweb.jorm.api.PIndexedElem
Throws:
org.objectweb.jorm.api.PException

pieSetOintIndexField

public void pieSetOintIndexField(String fn,
                                 Integer value)
                          throws org.objectweb.jorm.api.PException
Specified by:
pieSetOintIndexField in interface org.objectweb.jorm.api.PIndexedElem
Throws:
org.objectweb.jorm.api.PException

pieSetLongElem

public void pieSetLongElem(long value)
                    throws org.objectweb.jorm.api.PException
Specified by:
pieSetLongElem in interface org.objectweb.jorm.api.PIndexedElem
Throws:
org.objectweb.jorm.api.PException

pieSetOlongElem

public void pieSetOlongElem(Long value)
                     throws org.objectweb.jorm.api.PException
Specified by:
pieSetOlongElem in interface org.objectweb.jorm.api.PIndexedElem
Throws:
org.objectweb.jorm.api.PException

pieSetLongIndexField

public void pieSetLongIndexField(String fn,
                                 long value)
                          throws org.objectweb.jorm.api.PException
Specified by:
pieSetLongIndexField in interface org.objectweb.jorm.api.PIndexedElem
Throws:
org.objectweb.jorm.api.PException

pieSetOlongIndexField

public void pieSetOlongIndexField(String fn,
                                  Long value)
                           throws org.objectweb.jorm.api.PException
Specified by:
pieSetOlongIndexField in interface org.objectweb.jorm.api.PIndexedElem
Throws:
org.objectweb.jorm.api.PException

pieSetFloatElem

public void pieSetFloatElem(float value)
                     throws org.objectweb.jorm.api.PException
Specified by:
pieSetFloatElem in interface org.objectweb.jorm.api.PIndexedElem
Throws:
org.objectweb.jorm.api.PException

pieSetOfloatElem

public void pieSetOfloatElem(Float value)
                      throws org.objectweb.jorm.api.PException
Specified by:
pieSetOfloatElem in interface org.objectweb.jorm.api.PIndexedElem
Throws:
org.objectweb.jorm.api.PException

pieSetDoubleElem

public void pieSetDoubleElem(double value)
                      throws org.objectweb.jorm.api.PException
Specified by:
pieSetDoubleElem in interface org.objectweb.jorm.api.PIndexedElem
Throws:
org.objectweb.jorm.api.PException

pieSetOdoubleElem

public void pieSetOdoubleElem(Double value)
                       throws org.objectweb.jorm.api.PException
Specified by:
pieSetOdoubleElem in interface org.objectweb.jorm.api.PIndexedElem
Throws:
org.objectweb.jorm.api.PException

pieSetStringElem

public void pieSetStringElem(String value)
                      throws org.objectweb.jorm.api.PException
Specified by:
pieSetStringElem in interface org.objectweb.jorm.api.PIndexedElem
Throws:
org.objectweb.jorm.api.PException

pieSetStringIndexField

public void pieSetStringIndexField(String fn,
                                   String value)
                            throws org.objectweb.jorm.api.PException
Specified by:
pieSetStringIndexField in interface org.objectweb.jorm.api.PIndexedElem
Throws:
org.objectweb.jorm.api.PException

pieSetDateElem

public void pieSetDateElem(Date value)
                    throws org.objectweb.jorm.api.PException
Specified by:
pieSetDateElem in interface org.objectweb.jorm.api.PIndexedElem
Throws:
org.objectweb.jorm.api.PException

pieSetDateIndexField

public void pieSetDateIndexField(String fn,
                                 Date value)
                          throws org.objectweb.jorm.api.PException
Specified by:
pieSetDateIndexField in interface org.objectweb.jorm.api.PIndexedElem
Throws:
org.objectweb.jorm.api.PException

pieSetCharArrayElem

public void pieSetCharArrayElem(char[] value)
                         throws org.objectweb.jorm.api.PException
Specified by:
pieSetCharArrayElem in interface org.objectweb.jorm.api.PIndexedElem
Throws:
org.objectweb.jorm.api.PException

pieSetByteArrayElem

public void pieSetByteArrayElem(byte[] value)
                         throws org.objectweb.jorm.api.PException
Specified by:
pieSetByteArrayElem in interface org.objectweb.jorm.api.PIndexedElem
Throws:
org.objectweb.jorm.api.PException

pieSetSerializedElem

public void pieSetSerializedElem(Serializable value)
                          throws org.objectweb.jorm.api.PException
Specified by:
pieSetSerializedElem in interface org.objectweb.jorm.api.PIndexedElem
Throws:
org.objectweb.jorm.api.PException

pieGetBigDecimalElem

public BigDecimal pieGetBigDecimalElem()
                                throws org.objectweb.jorm.api.PException
Specified by:
pieGetBigDecimalElem in interface org.objectweb.jorm.api.PIndexedElem
Throws:
org.objectweb.jorm.api.PException

pieSetBigDecimalElem

public void pieSetBigDecimalElem(BigDecimal value)
                          throws org.objectweb.jorm.api.PException
Specified by:
pieSetBigDecimalElem in interface org.objectweb.jorm.api.PIndexedElem
Throws:
org.objectweb.jorm.api.PException

pieGetBigIntegerElem

public BigInteger pieGetBigIntegerElem()
                                throws org.objectweb.jorm.api.PException
Specified by:
pieGetBigIntegerElem in interface org.objectweb.jorm.api.PIndexedElem
Throws:
org.objectweb.jorm.api.PException

pieSetBigIntegerElem

public void pieSetBigIntegerElem(BigInteger value)
                          throws org.objectweb.jorm.api.PException
Specified by:
pieSetBigIntegerElem in interface org.objectweb.jorm.api.PIndexedElem
Throws:
org.objectweb.jorm.api.PException


Copyright © 2010 OW2 Consortium. All Rights Reserved.