org.opencrx.kernel.address1.jmi1
Interface PostalAddressable

All Superinterfaces:
Pictured, PostalAddressable, RefBaseObject, RefFeatured, RefObject, RefObject_1_0
All Known Subinterfaces:
PostalAddress, PostalAddress, PostalAddress, PostalAddress

public interface PostalAddressable
extends PostalAddressable, Pictured

Abstract class PostalAddressable


Method Summary
 List<String> getPostalAddressLine()
          Retrieves a list containing all the elements for the attribute postalAddressLine.
 List<String> getPostalStreet()
          Retrieves a list containing all the elements for the attribute postalStreet.
 void setPostalAddressLine(List<String> postalAddressLine)
          Clears postalAddressLine and adds the members of the given List.
 void setPostalStreet(List<String> postalStreet)
          Clears postalStreet and adds the members of the given List.
 
Methods inherited from interface org.opencrx.kernel.address1.cci2.PostalAddressable
getPostalCity, getPostalCode, getPostalCountry, getPostalCounty, getPostalFreightTerms, getPostalLatitude, getPostalLongitude, getPostalState, getPostalStreetNumber, getPostalUtcOffset, setPostalAddressLine, setPostalCity, setPostalCode, setPostalCountry, setPostalCounty, setPostalFreightTerms, setPostalLatitude, setPostalLongitude, setPostalState, setPostalStreet, setPostalStreetNumber, setPostalUtcOffset
 
Methods inherited from interface org.opencrx.kernel.generic.jmi1.Pictured
getPicture, setPicture
 
Methods inherited from interface org.opencrx.kernel.generic.cci2.Pictured
getPictureContent, getPictureContentMimeType, getPictureContentName
 
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

getPostalAddressLine

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

Specified by:
getPostalAddressLine in interface PostalAddressable
Returns:
A list containing all elements for this attribute.

setPostalAddressLine

void setPostalAddressLine(List<String> postalAddressLine)
Clears postalAddressLine and adds the members of the given List.

This method is equivalent to

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

Parameters:
postalAddressLine - collection to be copied.

getPostalStreet

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

Specified by:
getPostalStreet in interface PostalAddressable
Returns:
A list containing all elements for this attribute.

setPostalStreet

void setPostalStreet(List<String> postalStreet)
Clears postalStreet and adds the members of the given List.

This method is equivalent to

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

Parameters:
postalStreet - 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.