View Javadoc

1   /*
2    * TableModelEventImpl.java
3    * Created on 26 Август 2006 г., 15:34
4    */
5   
6   package org.weda.model.impl;
7   
8   import org.weda.common.ChangeType;
9   import org.weda.model.TableModelEvent;
10  
11  /**
12   *
13   * @author Mikhail Titov
14   */
15  public class TableModelEventImpl implements TableModelEvent{
16      private ChangeType changeType;
17      
18      public TableModelEventImpl(ChangeType changeType){
19          this.changeType = changeType;
20      }
21      
22      public ChangeType getChangeType() {
23          return changeType;
24      }
25      
26  }