View Javadoc

1   package com.loribel.commons.abstraction;
2   
3   /***
4    * Interface for Object that can return a list of items.
5    *
6    * @author Grégory Borelli
7    * @version 2003/10/28 - 17:41:48 - gen 7.12
8    */
9   public interface GB_SelectedItemsOwner
10  {
11  
12      /***
13       * Returns a list of items.
14       *
15       * @return java.util.List
16       */
17      java.util.List getSelectedItems();
18  
19  }