View Javadoc

1   package com.loribel.commons.abstraction;
2   
3   /***
4    * Interface to keep realitions with ids [1-n].
5    */
6   public interface GB_LinkIdSet
7           extends
8               GB_LinkId,
9               GB_IdOwnerSet
10  {
11      /***
12       * Sets the list of foreign keys.
13       */
14      void setFkIds(
15              String[] a_fkIds);
16  }