org.opencrx.kernel.base.jmi1
Interface QueryFilterProperty

All Superinterfaces:
QueryFilterProperty, RefBaseObject, RefFeatured, RefObject, RefObject_1_0
All Known Subinterfaces:
AccountQueryFilterProperty, ActivityQueryFilterProperty, AddressQueryFilterProperty, ContractQueryFilterProperty, ProductQueryFilterProperty

public interface QueryFilterProperty
extends QueryFilterProperty, RefObject_1_0

Abstract class QueryFilterProperty


Method Summary
 List<Boolean> getBooleanParam()
          Retrieves a list containing all the elements for the attribute booleanParam.
 List<XMLGregorianCalendar> getDateParam()
          Retrieves a list containing all the elements for the attribute dateParam.
 List<Date> getDateTimeParam()
          Retrieves a list containing all the elements for the attribute dateTimeParam.
 List<BigDecimal> getDecimalParam()
          Retrieves a list containing all the elements for the attribute decimalParam.
 List<Integer> getIntegerParam()
          Retrieves a list containing all the elements for the attribute integerParam.
 List<String> getStringParam()
          Retrieves a list containing all the elements for the attribute stringParam.
 void setBooleanParam(List<Boolean> booleanParam)
          Clears booleanParam and adds the members of the given List.
 void setDateParam(List<XMLGregorianCalendar> dateParam)
          Clears dateParam and adds the members of the given List.
 void setDateTimeParam(List<Date> dateTimeParam)
          Clears dateTimeParam and adds the members of the given List.
 void setDecimalParam(List<BigDecimal> decimalParam)
          Clears decimalParam and adds the members of the given List.
 void setIntegerParam(List<Integer> integerParam)
          Clears integerParam and adds the members of the given List.
 void setStringParam(List<String> stringParam)
          Clears stringParam and adds the members of the given List.
 
Methods inherited from interface org.opencrx.kernel.base.cci2.QueryFilterProperty
getClause, setBooleanParam, setClause, setDateParam, setDateTimeParam, setDecimalParam, setIntegerParam, setStringParam
 
Methods inherited from interface org.openmdx.base.accessor.jmi.cci.RefObject_1_0
refDefaultFetchGroup, refDelegate, refGetPath, refGetValue, refInitialize, refInitialize, refSetValue
 
Methods inherited from interface javax.jmi.reflect.RefObject
refClass, refDelete, refImmediateComposite, refIsInstanceOf, refOutermostComposite
 
Methods inherited from interface javax.jmi.reflect.RefFeatured
refGetValue, refGetValue, refInvokeOperation, refInvokeOperation, refSetValue, refSetValue
 
Methods inherited from interface javax.jmi.reflect.RefBaseObject
equals, hashCode, refImmediatePackage, refMetaObject, refMofId, refOutermostPackage, refVerifyConstraints
 

Method Detail

getBooleanParam

List<Boolean> getBooleanParam()
Retrieves a list containing all the elements for the attribute booleanParam.

Specified by:
getBooleanParam in interface QueryFilterProperty
Returns:
A list containing all elements for this attribute.

setBooleanParam

void setBooleanParam(List<Boolean> booleanParam)
Clears booleanParam and adds the members of the given List.

This method is equivalent to

   list.clear();
   list.addAll(booleanParam);
 
Note: This is an extension to the JMI 1 standard.
In order to remain standard compliant you should use the equivalent code.

Parameters:
booleanParam - collection to be copied.

getDateParam

List<XMLGregorianCalendar> getDateParam()
Retrieves a list containing all the elements for the attribute dateParam.

Specified by:
getDateParam in interface QueryFilterProperty
Returns:
A list containing all elements for this attribute.

setDateParam

void setDateParam(List<XMLGregorianCalendar> dateParam)
Clears dateParam and adds the members of the given List.

This method is equivalent to

   list.clear();
   list.addAll(dateParam);
 
Note: This is an extension to the JMI 1 standard.
In order to remain standard compliant you should use the equivalent code.

Parameters:
dateParam - collection to be copied.

getDateTimeParam

List<Date> getDateTimeParam()
Retrieves a list containing all the elements for the attribute dateTimeParam.

Specified by:
getDateTimeParam in interface QueryFilterProperty
Returns:
A list containing all elements for this attribute.

setDateTimeParam

void setDateTimeParam(List<Date> dateTimeParam)
Clears dateTimeParam and adds the members of the given List.

This method is equivalent to

   list.clear();
   list.addAll(dateTimeParam);
 
Note: This is an extension to the JMI 1 standard.
In order to remain standard compliant you should use the equivalent code.

Parameters:
dateTimeParam - collection to be copied.

getDecimalParam

List<BigDecimal> getDecimalParam()
Retrieves a list containing all the elements for the attribute decimalParam.

Specified by:
getDecimalParam in interface QueryFilterProperty
Returns:
A list containing all elements for this attribute.

setDecimalParam

void setDecimalParam(List<BigDecimal> decimalParam)
Clears decimalParam and adds the members of the given List.

This method is equivalent to

   list.clear();
   list.addAll(decimalParam);
 
Note: This is an extension to the JMI 1 standard.
In order to remain standard compliant you should use the equivalent code.

Parameters:
decimalParam - collection to be copied.

getIntegerParam

List<Integer> getIntegerParam()
Retrieves a list containing all the elements for the attribute integerParam.

Specified by:
getIntegerParam in interface QueryFilterProperty
Returns:
A list containing all elements for this attribute.

setIntegerParam

void setIntegerParam(List<Integer> integerParam)
Clears integerParam and adds the members of the given List.

This method is equivalent to

   list.clear();
   list.addAll(integerParam);
 
Note: This is an extension to the JMI 1 standard.
In order to remain standard compliant you should use the equivalent code.

Parameters:
integerParam - collection to be copied.

getStringParam

List<String> getStringParam()
Retrieves a list containing all the elements for the attribute stringParam.

Specified by:
getStringParam in interface QueryFilterProperty
Returns:
A list containing all elements for this attribute.

setStringParam

void setStringParam(List<String> stringParam)
Clears stringParam and adds the members of the given List.

This method is equivalent to

   list.clear();
   list.addAll(stringParam);
 
Note: This is an extension to the JMI 1 standard.
In order to remain standard compliant you should use the equivalent code.

Parameters:
stringParam - collection to be copied.


This software is published under the BSD license. Copyright © 2003-2012, CRIXP AG, Switzerland, All rights reserved. Use is subject to license terms.