KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jdesktop > swing > binding > SelectionBinding


1 /*
2  * SelectionBinding.java
3  *
4  * Created on February 24, 2005, 6:33 AM
5  */

6
7 package org.jdesktop.swing.binding;
8
9 import org.jdesktop.swing.data.SelectionModel;
10
11 /**
12  *
13  * @author rb156199
14  */

15 public abstract class SelectionBinding {
16     protected SelectionModel selectionModel;
17     
18     public SelectionBinding(SelectionModel model) {
19         assert model != null;
20         selectionModel = model;
21     }
22 }
23
Popular Tags