SelectionBinding.java
上传用户:zhengdagz
上传日期:2014-03-06
资源大小:1956k
文件大小:0k
源码类别:

xml/soap/webservice

开发平台:

Java

  1. /*
  2.  * SelectionBinding.java
  3.  *
  4.  * Created on February 24, 2005, 6:33 AM
  5.  */
  6. package org.jdesktop.binding;
  7. /**
  8.  *
  9.  * @author rbair
  10.  */
  11. public abstract class SelectionBinding {
  12.     protected SelectionModel selectionModel;
  13.     
  14.     public SelectionBinding(SelectionModel model) {
  15.         assert model != null;
  16.         selectionModel = model;
  17.     }
  18. }