View Javadoc

1   package net.sourceforge.jdbdump.gui;
2   
3   import java.io.IOException;
4   import java.util.ArrayList;
5   import java.util.List;
6   
7   import javax.faces.model.SelectItem;
8   
9   import net.sourceforge.jdbdump.connect.Configuration;
10  
11  /***
12   * @author grabka
13   *
14   */
15  public class DbBqpListBean {
16  	private List list;
17  	
18  	public DbBqpListBean() throws InstantiationException, IllegalAccessException, ClassNotFoundException, IOException {
19  		list = new ArrayList();
20  		list.addAll(Configuration.getInstance().getBackups().values());
21  	}
22  	
23  	public synchronized List getList() {
24  		return list;
25  	}
26  	
27  	public void setList(List list) {
28  		this.list = list;
29  	}
30  }