1 package com.loribel.commons.business.abstraction;
2
3 import com.loribel.commons.abstraction.*;
4
5 /***
6 * Abstraction for couple value.
7 */
8 public interface GB_BOCoupleValue
9 extends
10 GB_ValueOwner
11 {
12 GB_BOProperty getProperty();
13
14 String getPropertyName();
15
16 String getValueName();
17 }