001package jmaster.jumploader.model.api.common; 002 003/** 004 * IListSelectionListener 005 * 006 * @author timur 007 */ 008 009public interface IListSelectionListener { 010 //--------------------------------------------------------------- 011 // constants 012 //--------------------------------------------------------------- 013 //--------------------------------------------------------------- 014 // business methods 015 //--------------------------------------------------------------- 016 /** 017 * selection changed 018 */ 019 public void listSelectionChanged( IListSelection ls ); 020}