1 package org.jacorb.poa.gui; 2 3 22 23 24 30 31 public interface POAMonitorView 32 { 33 void _destroy() ; 34 void _initActiveRequestsBar(int avg, int max); 35 void _initAOMBar(int max, boolean isVariable); 36 void _initQueueBar(int max, boolean isVariable); 37 void _initThreadPoolBar(int max); 38 void _printMessage(String str); 39 void _setMaxThreadPoolBar(int value); 40 void _setName(String str); 41 void _setPolicyIdAssignment(String str); 42 void _setPolicyIdUniqueness(String str); 43 void _setPolicyImplicitActivation(String str); 44 void _setPolicyLifespan(String str); 45 void _setPolicyRequestProcessing(String str); 46 void _setPolicyServantRetention(String str); 47 void _setPolicyThread(String str); 48 void _setState(String str); 49 void _setValueActiveRequestsBar(int value); 50 void _setValueAOMBar(int value); 51 void _setValueQueueBar(int value); 52 void _setValueThreadPoolBar(int value); 53 void _setVisible(boolean visible); 54 } 55 56 57 | Popular Tags |