View Javadoc

1   package com.loribel.commons.abstraction;
2   
3   import com.loribel.commons.util.*;
4   
5   /***
6    * Abstraction of a Object with id.
7    * 
8    * @see GB_IdOwnerTools
9    * 
10   * @author Gregory Borelli
11   */
12  public interface GB_IdOwnerSet
13          extends
14              GB_IdOwner
15  {
16      void setId(
17              String a_id);
18  }