KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > ozoneDB > adminGui > widget > ButtonPanelListener


1 // You can redistribute this software and/or modify it under the terms of
2
// the Ozone Library License version 1 published by ozone-db.org.
3
//
4
// The original code and portions created by SMB are
5
// Copyright (C) 1997-@year@ by SMB GmbH. All rights reserved.
6
//
7
package org.ozoneDB.adminGui.widget;
8
9 import java.util.EventListener JavaDoc;
10
11
12 //#############################################################################
13
/**
14  * This class creates the listener to communicate between the buttons and the
15  * connected form.
16  *
17  * @author <p align=center>Ibsen Ramos-Bonilla
18  * <br>Copyright &copy 1997-@year@ by SMB GmbH. All Rights Reserved.</p>
19  *
20  * @version 1.0
21  */

22 //#############################################################################
23

24 public interface ButtonPanelListener extends EventListener JavaDoc {
25
26     /** Event that checks which button was pressed. */
27     public void buttonExecute(String JavaDoc buttonName);
28
29 } //--------------------------------- E O F -----------------------------------
30
Popular Tags