package org.jacorb.poa.gui; /* * JacORB - a free Java ORB * * Copyright (C) 1997-2014 Gerald Brose / The JacORB Team. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Library General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this library; if not, write to the Free * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ /** * Defines an interface of a POAManager monitor gui class. * * @author Reimo Tiedemann, FU Berlin * @version 1.00, 06/11/99, RT */ public interface POAMonitorView { void _destroy() ; void _initActiveRequestsBar(int avg, int max); void _initAOMBar(int max, boolean isVariable); void _initQueueBar(int max, boolean isVariable); void _initThreadPoolBar(int max); void _printMessage(String str); void _setMaxThreadPoolBar(int value); void _setName(String str); void _setPolicyIdAssignment(String str); void _setPolicyIdUniqueness(String str); void _setPolicyImplicitActivation(String str); void _setPolicyLifespan(String str); void _setPolicyRequestProcessing(String str); void _setPolicyServantRetention(String str); void _setPolicyThread(String str); void _setState(String str); void _setValueActiveRequestsBar(int value); void _setValueAOMBar(int value); void _setValueQueueBar(int value); void _setValueThreadPoolBar(int value); void _setVisible(boolean visible); }