1 22 23 package org.enhydra.kelp.common.event; 24 25 import java.util.EventObject ; 26 27 public class SwingTableSelectionEvent extends EventObject { 28 public int index = -1; 29 30 public SwingTableSelectionEvent(Object source, int i) { 31 super(source); 32 this.index = i; 33 } 34 35 public int getSelectionIndex() { 36 return index; 37 } 38 39 public boolean isSelectionNull() { 40 return (index < 0); 41 } 42 43 } 44 | Popular Tags |