Uses of Class
cern.cmw.BadParameter

Packages that use BadParameter
cern.cmw Provides common classes that are used by different CMW packages. 
cern.cmw.adm   
cern.cmw.rda.client Provides classes and interfaces which client applications need in order to communicate with accelerator devices. 
cern.cmw.rda.examples   
cern.cmw.rda.server Provides basic facilities for implementing various device servers. 
 

Uses of BadParameter in cern.cmw
 

Methods in cern.cmw that throw BadParameter
 boolean Data.extractBoolean()
          Returns the boolean stored in the default data entry.
 boolean Data.extractBoolean(String tag)
          Returns the boolean stored in the specified data entry.
 boolean[] Data.extractBooleanArray()
          Returns the boolean array stored in the default data entry.
 boolean[] Data.extractBooleanArray(String tag)
          Returns the boolean array stored in the specified data entry.
 byte Data.extractByte()
          Returns the byte stored in the default data entry.
 byte Data.extractByte(String tag)
          Returns the byte stored in the specified data entry.
 byte[] Data.extractByteArray()
          Returns the byte array stored in the default data entry.
 byte[] Data.extractByteArray(String tag)
          Returns the byte array stored in the specified data entry.
 double Data.extractDouble()
          Returns the double stored in the default data entry.
 double Data.extractDouble(String tag)
          Returns the double stored in the specified data entry.
 double[] Data.extractDoubleArray()
          Returns the double array stored in the default data entry.
 double[] Data.extractDoubleArray(String tag)
          Returns the double array stored in the specified data entry.
 float Data.extractFloat()
          Returns the float stored in the default data entry.
 float Data.extractFloat(String tag)
          Returns the float stored in the specified data entry.
 float[] Data.extractFloatArray()
          Returns the float array stored in the default data entry.
 float[] Data.extractFloatArray(String tag)
          Returns the float array stored in the specified data entry.
 int Data.extractInt()
          Returns the int stored in the default data entry.
 int Data.extractInt(String tag)
          Returns the int stored in the specified data entry.
 int[] Data.extractIntArray()
          Returns the int array stored in the default data entry.
 int[] Data.extractIntArray(String tag)
          Returns the int array stored in the specified data entry.
 long Data.extractLong()
          Returns the long stored in the default data entry.
 long Data.extractLong(String tag)
          Returns the long stored in the specified data entry.
 long[] Data.extractLongArray()
          Returns the long array stored in the default data entry.
 long[] Data.extractLongArray(String tag)
          Returns the long array stored in the specified data entry.
 Object Data.extractObject()
          Returns the Object stored in the Default data entry.
 Object Data.extractObject(String tag)
          Returns the Object stored in the specified data entry.
 short Data.extractShort()
          Returns the short stored in the default data entry.
 short Data.extractShort(String tag)
          Returns the short stored in the specified data entry.
 short[] Data.extractShortArray()
          Returns the short array stored in the default data entry.
 short[] Data.extractShortArray(String tag)
          Returns the short array stored in the specified data entry.
 String Data.extractString()
          Returns the String stored in the default data entry.
 String Data.extractString(String tag)
          Returns the String stored in the specified data entry.
 String[] Data.extractStringArray()
          Returns the String array stored in the default data entry.
 String[] Data.extractStringArray(String tag)
          Returns the String array stored in the specified data entry.
static LogLevel LogLevel.parse(String name)
          Returns the log level corresponding to the given name.
 

Uses of BadParameter in cern.cmw.adm
 

Constructors in cern.cmw.adm that throw BadParameter
ServerAdmin(String name)
          Constructs a ServerAdmin object for the specified server.
ServerConnectionsAdmin(String name)
          Constructs a ServerConnectionsAdmin object for the specified server.
 

Uses of BadParameter in cern.cmw.rda.client
 

Methods in cern.cmw.rda.client with parameters of type BadParameter
 void ReplyHandler.handleException(Request request, BadParameter exception)
          Invoked on receipt of a reply containing the specified exception.
 void ReplyAdapter.handleException(Request request, BadParameter exception)
          Invoked on receipt of a reply containing the specified exception.
 

Methods in cern.cmw.rda.client that throw BadParameter
 GetRequest DeviceHandle.createGetRequest(String propName, String cycleSelector, Data context, ReplyHandler replyHandler)
           
 SetRequest DeviceHandle.createSetRequest(String propName, String cycleSelector, Data value, Data context, ReplyHandler replyHandler)
           
 Data IDeviceHandle.get(String propName)
           
 Data DeviceHandle.get(String propName)
          Reads from the device and returns the specified property value.
 GetRequest IDeviceHandle.get(String propName, ReplyHandler replyHandler)
           
 GetRequest DeviceHandle.get(String propName, ReplyHandler replyHandler)
          Creaters and sends to the device a request to read the speciified property value.
 Data IDeviceHandle.get(String propName, String cycleSelector)
           
 Data DeviceHandle.get(String propName, String cycleSelector)
          Reads from the device and returns the specified property value.
 Data IDeviceHandle.get(String propName, String cycleSelector, Data context)
           
 Data DeviceHandle.get(String propName, String cycleSelector, Data context)
          Reads from the device and returns the specified property value.
 GetRequest IDeviceHandle.get(String propName, String cycleSelector, Data context, ReplyHandler replyHandler)
           
 GetRequest DeviceHandle.get(String propName, String cycleSelector, Data context, ReplyHandler replyHandler)
          Creates and sends to the device a request to read the specified property value.
 GetRequest IDeviceHandle.get(String propName, String cycleSelector, ReplyHandler replyHandler)
           
 GetRequest DeviceHandle.get(String propName, String cycleSelector, ReplyHandler replyHandler)
          Creates and sends to the device a request to read the speciified property value.
 DeviceHandle RDAService.getDeviceHandle(String deviceName)
          Returns a handle for the device identified by the specified name.
 IDeviceHandle IRDAService.getDeviceHandle(String deviceName)
           
 DeviceInfo DeviceDirectory.getDeviceInfo(String deviceName)
           
 DeviceInfo CmwDirectoryServer.getDeviceInfo(String deviceName)
           
 DeviceInfo DeviceDirectory.getDeviceInfoFromOldDir(String deviceName)
          Deprecated. 
 HashMap CmwDirectoryServer.getDeviceInfoMap(String groupQuery)
          Deprecated. 
 List<IRDAService.GetElement> RDAService.listGet(List<String> parameters, String cycleSelector)
           
 List<IRDAService.GetElement> IRDAService.listGet(List<String> parameters, String cycleSelector)
          Performs an optimized (bulk) call for multiple get operation.
 List<IRDAService.GetElement> RDAService.listGet(List<String> parameters, String cycleSelector, Data context)
          Performs an optimized (bulk) call for multiple get operation.
 List<IRDAService.GetElement> IRDAService.listGet(List<String> parameters, String cycleSelector, Data context)
           
 List<String> RDAService.listSet(List<String> parameters, List<Data> values, String cycleSelector)
           
 List<String> IRDAService.listSet(List<String> parameters, List<Data> values, String cycleSelector)
          Performs an optimized (bulk) call for multiple set operation.
 List<String> RDAService.listSet(List<String> parameters, List<Data> values, String cycleSelector, Data context)
          Performs an optimized (bulk) call for multiple set operation.
 List<String> IRDAService.listSet(List<String> parameters, List<Data> values, String cycleSelector, Data context)
           
 List<IRDAService.SubscriptionResult> RDAService.listSubscribe(List<String> parameters, String cycleSelector, Data context, ReplyHandler replyHandler)
          Performs an optimized (bulk) call for multiple subscriptions, possibly with context.
 List<IRDAService.SubscriptionResult> IRDAService.listSubscribe(List<String> parameters, String cycleSelector, Data context, ReplyHandler replyHandler)
          Performs an optimized (bulk) call for multiple subscriptions, possibly with context.
 List<IRDAService.SubscriptionResult> RDAService.listSubscribe(List<String> parameters, String cycleSelector, ReplyHandler replyHandler)
          Performs an optimized (bulk) call for multiple subscriptions.
 List<IRDAService.SubscriptionResult> IRDAService.listSubscribe(List<String> parameters, String cycleSelector, ReplyHandler replyHandler)
          Performs an optimized (bulk) call for multiple subscriptions.
 void RDAService.listUnsubscribe(List<ISubscriptionRequest> requests)
          Performs an optimized (bulk) cancellation for multiple subscriptions.
 void IRDAService.listUnsubscribe(List<ISubscriptionRequest> requests)
          Performs an optimized (bulk) cancellation for multiple subscriptions.
 void IDeviceHandle.monitorOff(SubscriptionRequest subscription)
           
 void DeviceHandle.monitorOff(SubscriptionRequest subscription)
          Cancels a data subscription initiated by the specified request.
 SubscriptionRequest IDeviceHandle.monitorOn(String propName, boolean onChange, ReplyHandler replyHandler)
           
 SubscriptionRequest DeviceHandle.monitorOn(String propName, boolean onChange, ReplyHandler replyHandler)
          Starts a subscription on the specified property value.
 SubscriptionRequest IDeviceHandle.monitorOn(String propName, String cycleSelector, boolean onChange, ReplyHandler replyHandler)
           
 SubscriptionRequest DeviceHandle.monitorOn(String propName, String cycleSelector, boolean onChange, ReplyHandler replyHandler)
          Starts a subscription on the specified property value.
 SubscriptionRequest IDeviceHandle.monitorOn(String propName, String cycleSelector, boolean onChange, ReplyHandler replyHandler, Data context)
           
 SubscriptionRequest DeviceHandle.monitorOn(String propName, String cycleSelector, boolean onChange, ReplyHandler replyHandler, Data context)
          Starts a subscription on the specified property value.
 void RDAService.send(GetRequest[] requests)
          Submits for execution a group of requests to read property values.
 void RDAService.send(SetRequest[] requests)
          Submits for execution a group of requests to set property values.
 void IDeviceHandle.set(String propName, Data value)
           
 void DeviceHandle.set(String propName, Data value)
          Changes the value of the specified property.
 SetRequest IDeviceHandle.set(String propName, Data value, ReplyHandler replyHandler)
           
 SetRequest DeviceHandle.set(String propName, Data value, ReplyHandler replyHandler)
          Creates and sends to the device a request to change the value of the specified property.
 void IDeviceHandle.set(String propName, String cycleSelector, Data value)
           
 void DeviceHandle.set(String propName, String cycleSelector, Data value)
          Changes the value of the specified property.
 void IDeviceHandle.set(String propName, String cycleSelector, Data value, Data context)
           
 void DeviceHandle.set(String propName, String cycleSelector, Data value, Data context)
          Changes the value of the specified property.
 SetRequest IDeviceHandle.set(String propName, String cycleSelector, Data value, Data context, ReplyHandler replyHandler)
           
 SetRequest DeviceHandle.set(String propName, String cycleSelector, Data value, Data context, ReplyHandler replyHandler)
          Creates an sends to the device a request to change the value of the specified property.
 SetRequest IDeviceHandle.set(String propName, String cycleSelector, Data value, ReplyHandler replyHandler)
           
 SetRequest DeviceHandle.set(String propName, String cycleSelector, Data value, ReplyHandler replyHandler)
          Creates and sends to the device a request to change the value of the specified property.
 

Uses of BadParameter in cern.cmw.rda.examples
 

Methods in cern.cmw.rda.examples that throw BadParameter
 Data NoiseGenerator.get(IOPoint iop, Data context)
          Returns a value of the specified property in a Data object.
 Data DeviceServer.get(IOPoint iop, Data context)
          Delegates the get call to a NoiseGenerator specified by the iop argument.
 void NoiseGenerator.monitorOn(IOPoint iop, ValueChangeListener listener)
          Attaches the specified listener to the specified property.
 void DeviceServer.monitorOn(IOPoint iop, ValueChangeListener listener)
          Delegates the monitorOn call to a NoiseGenerator specified by the iop argument.
 void NoiseGenerator.set(IOPoint iop, Data value, Data context)
          Sets the specified property to the specified value.
 void DeviceServer.set(IOPoint iop, Data value, Data context)
          Delegates the set call to a NoiseGenerator specified by the iop argument.
 

Uses of BadParameter in cern.cmw.rda.server
 

Methods in cern.cmw.rda.server that throw BadParameter
 Data DeviceServerBase.get(IOPoint iop, Data context)
          Returns the value at the specified I/O point.
 String DeviceServerBase.getClassName(String deviceName)
           
 int DeviceServerBase.getVersion(String component)
          Gets the version number of a specified software component.
 void DeviceServerBase.monitorOn(IOPoint iop, ValueChangeListener listener)
          Starts a subscription to value at the specified I/O point.
 void DeviceServerBase.set(IOPoint iop, Data value, Data context)
          Changes the value at the specified I/O point.
 



Copyright © 2007 CERN. All Rights Reserved.