View Javadoc

1   /*
2    * joey and its relative products are published under the terms
3    * of the Apache Software License.
4    * 
5    * Created on 2004/05/28 4:57:27
6    */
7   package org.asyrinx.joey.gui;
8   
9   import java.util.List;
10  
11  import org.asyrinx.joey.om.SearchCondition;
12  
13  /***
14   * @author akima
15   */
16  public interface EntityListView extends EntityView, EntityPointer {
17  
18  	public void load(List entities);
19  
20  	public SearchCondition getCondition();
21  	public void setCondition(SearchCondition condition);
22  
23  	public void clearList();
24  }