View Javadoc

1   package com.loribel.commons.business.abstraction;
2   
3   /***
4    * Abstraction of a simple BusinessObject..
5    */
6   public interface GB_BOValueOwner
7   {
8       /***
9        * Return the BusinessObjectValue associated to a property.
10       *
11       * @param a_propertyName String -
12       *
13       * @return GB_SimpleBusinessObjectValue
14       */
15      GB_SimpleBOValue getBOValue(
16              String a_propertyName);
17  
18  }