KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tonbeller > jpivot > mondrian > MondrianQuaxChangeListener


1 /*
2  * ====================================================================
3  * This software is subject to the terms of the Common Public License
4  * Agreement, available at the following URL:
5  * http://www.opensource.org/licenses/cpl.html .
6  * Copyright (C) 2003-2004 TONBELLER AG.
7  * All Rights Reserved.
8  * You must accept the terms of that agreement to use this software.
9  * ====================================================================
10  *
11  *
12  */

13 /*
14  * Created on 13.06.2003
15  * by hh
16  */

17 package com.tonbeller.jpivot.mondrian;
18
19 import java.util.EventListener JavaDoc;
20
21
22 /**
23  * @param quax the Quax being changed
24  * @param source the initiator object of the change
25  * @param changedMemberSet true if the member set was changed
26  * by the navigator
27  */

28 public interface MondrianQuaxChangeListener extends EventListener JavaDoc {
29     void quaxChanged(MondrianQuax quax, Object JavaDoc source, boolean changedMemberSet);
30 }
31
Popular Tags