1 /*2 * SelectionBinding.java3 *4 * Created on February 24, 2005, 6:33 AM5 */6 7 package org.jdesktop.swing.binding;8 9 import org.jdesktop.swing.data.SelectionModel;10 11 /**12 *13 * @author rb15619914 */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