1 23 24 package org.apache.slide.event; 25 26 31 public class LockAdapter implements LockListener { 32 public void lock(LockEvent event) throws VetoException { 33 } 34 35 public void unlock(LockEvent event) throws VetoException { 36 } 37 38 public void renew(LockEvent event) throws VetoException { 39 } 40 41 public void kill(LockEvent event) throws VetoException { 42 } 43 } 44 | Popular Tags |