KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tonbeller > jpivot > tags > StateLogger


1 /*
2  * Copyright (c) 1971-2003 TONBELLER AG, Bensheim.
3  * All rights reserved.
4  */

5 package com.tonbeller.jpivot.tags;
6
7 import com.tonbeller.jpivot.tags.StateManager.State;
8
9 /**
10  * methods will be called before the action on the state is performed.
11  *
12  * @author av
13  * @since Mar 23, 2006
14  */

15 public interface StateLogger {
16   void initialize(State s);
17
18   void destroy(State s);
19
20   void show(State s);
21
22   void hide(State s);
23   
24   void error(String JavaDoc msg);
25
26 }
27
Popular Tags