1 23 24 package org.apache.slide.event; 25 26 import java.util.EventListener ; 27 28 33 public interface LockListener extends EventListener { 34 public void lock(LockEvent event) throws VetoException; 35 36 public void unlock(LockEvent event) throws VetoException; 37 38 public void renew(LockEvent event) throws VetoException; 39 40 public void kill(LockEvent event) throws VetoException; 41 } | Popular Tags |