1 package com.loribel.commons.business.abstraction;
2
3 import com.loribel.commons.abstraction.*;
4
5 /***
6 * Abstraction.
7 */
8 public interface GB_BOPropertyLinkMapSet
9 extends
10 GB_BOPropertyLinkMap
11 {
12 void addPropertyLink(
13 String a_key,
14 String a_propertyLink,
15 GB_LabelIcon a_labelIcon);
16
17 void removePropertyLink(
18 String a_key);
19
20 void clearPropertyLink();
21 }