KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jacorb > poa > gui > POAMonitorController


1 package org.jacorb.poa.gui;
2
3 import org.jacorb.poa.util.ByteArrayKey;
4
5 /*
6  * JacORB - a free Java ORB
7  *
8  * Copyright (C) 1997-2004 Gerald Brose.
9  *
10  * This library is free software; you can redistribute it and/or
11  * modify it under the terms of the GNU Library General Public
12  * License as published by the Free Software Foundation; either
13  * version 2 of the License, or (at your option) any later version.
14  *
15  * This library is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18  * Library General Public License for more details.
19  *
20  * You should have received a copy of the GNU Library General Public
21  * License along with this library; if not, write to the Free
22  * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23  */

24  
25 /**
26  * Defines an interface of the POA monitor gui controller.
27  *
28  * @author Reimo Tiedemann, FU Berlin
29  * @version 1.00, 06/11/99, RT
30  */

31 public interface POAMonitorController {
32     void actionCloseView();
33     void actionDeactivateObject(String JavaDoc oidStr);
34     void actionRemoveRequestFromQueue(String JavaDoc ridStr);
35     org.jacorb.poa.util.StringPair[] actionRetrieveAOMContent();
36     org.jacorb.poa.util.StringPair[] actionRetrieveQueueContent();
37 }
38
39
40
41
42
43
44
45
46
47
48
49
50
51
Popular Tags