Java Doc for NegotiableCapability.java in  » 6.0-JDK-Modules » Java-Advanced-Imaging » javax » media » jai » remote » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » 6.0 JDK Modules » Java Advanced Imaging » javax.media.jai.remote 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   javax.media.jai.ParameterListImpl
      javax.media.jai.remote.NegotiableCapability

NegotiableCapability
public class NegotiableCapability extends ParameterListImpl implements Serializable(Code)
A NegotiableCapability represents the capabilities of an object. These capabilities can be used to negotiate with the capabilities of a similar object. Each NegotiableCapability is characterized by the category it belongs to, as returned by the getCategory() method, by the actual name of the capability it represents, as returned by the getCapabilityName() method and by a list of parameter name-value pairs that define the NegotiableCapability. Every NegotiableCapability object also holds references to a representation of the objects that generated it. These can be accessed via the getGenerators() method. The creator or generator of a NegotiableCapability can supply any representation of itself while constructing the NegotiableCapability. No interpretation is forced by this class, that is left upto the generating class and to the class that utilizes the NegotiableCapability to get the negotiated results. The negotiation is performed by the negotiate() method. Since this method returns a NegotiableCapability, this method can be used repeatedly to perform multiple negotiations. If the negotiation fails, null will be returned from the negotiate() method. Every successful negotiation will add the generator of the NegotiableCapability negotiated with, to the set of generators of the resultant NegotiableCapability. The generators are intended to help the user of NegotiableCapability identify the object that created the NegotiableCapability and therefore the object that can be relied on to be able to handle the parameters agreed on during negotiation. For example, if the negotiation is to be performed to choose a compatible TileEncoder, TileDecoder pair for data compression/decompression, the category would be "tileCodec", the capabilityName would be a specific tile encoding format, say "jpeg" and the generator for the NegotiableCapability could be the TileDecoderFactory/TileEncoderFactory object that generated that NegotiableCapability. After a successful negotiation, the NegotiableCapability that is the result of the negotiation will contain a TileEncoderFactory and a TileDecoderFactory object as the generators for that NegotiableCapability. These two objects can then be retrieved using the getGenerators method and used to do the encoding and decoding and can be relied to be compatible, since the negotiation was successful between their respective NegotiableCapability objects.

The number, name, Class type and default values for the parameters in this class is specified by the ParameterListDescriptor returned from getParameterListDescriptor method. Each parameter value in this class must be a class that implements the Negotiable interface. It is for this reason that all of the ParameterList set methods that take primitive data types as arguments and all the ParameterList get methods that return primitive data types are overridden in this class to throw an IllegalArgumentException, as this class only accepts Negotiable's as parameter values in order to facilitate negotiation on parameters. It may be noted that the implementation of the version of ParameterList.setParameter that takes an Object as the parameter value, in this class throws an IllegalArgumentException if the supplied Object to be set does not implement the Negotiable interface. If no Negotiable value is available as the value for a particular parameter, null should be set as the value. A null value returned from the getNegotiatedValue(String) method is however valid, since the single value result of the negotiation can be null. Similarly the Object returned from the ParameterList.getObjectParameter implementation in this class is always a class that implements the Negotiable interface, and not a wrapper class of a primitive data type, as documented for this method in ParameterList. The getParamValueRange(String parameterName) and the getEnumeratedParameterValues(String parameterName) methods of the ParameterListDescriptor returned from getParameterListDescriptor method of this class should be implemented to return null, since these methods are not meaningful when the parameter values are Negotiable.

In order for the negotiation to be successful, the category and the capabilityName of the two NegotiableCapability objects must be the same. In addition, negotiation on each of the parameters must be successful. Since each parameter is represented as a Negotiable, negotiation on it can be performed using the Negotiable.negotiate(Negotiable negotiable) method. The NegotiableCapability returned from the negotiate(NegotiableCapability capability) method contains the same category and capabilityName as that of the NegotiableCapability objects being negotiated as well as including the negotiated values for each parameter. If the negotiation fails for any one parameter, the negotiation for the NegotiableCapabilitys as a whole is said to fail (unless preference NegotiableCapability objects are involved in the negotiation, as described below) and a null is returned.

In order to get a single negotiated value from the set of valid values represented as the Negotiable value for a parameter, the getNegotiatedValue(String parameterName) method can be called. If the negotiation was successful, an Object which is the negotiated result will be returned, otherwise a null (signifying that the negotiation failed) will be returned.

NegotiableCapability objects can be classified as being either preferences or non-preferences. A non-preference describes the capabilities of an object completely by specifying Negotiable values for each and every parameter defined in the ParameterListDescriptor returned from getParameterListDescriptor method. A non-preference is allowed to not specify the value of a particular parameter, if a default value for that parameter exists (i.e. the default value is not null). When a non-preference is created, all parameter values are initialized to their default values, and therefore if any parameter value is left unset at the time of the negotiation, the default value that was set at time of initialization will be used for the negotiation. If the default value happened to be null, the negotiation in this case would fail. Note that all references to values in this paragraph, whether default or not, refered to the objects implementing the Negotiable interface that are the values set for a particular parameter name. A preference on the other hand specifies preferences for the selection of a prefered set of (maybe even a single) parameter value from the set of valid ones at negotiation time. A preference is allowed to specify Negotiable parameter values for a subset of parameters, if it so wishes. For those parameters for whom the preference does not specify values, the preference is indicating a don't-care attitude, and the result of the negotiation for such a parameter will be the Negotiable value from the non-preference object the preference is negotiating with. Note that the default value is not substituted for a parameter whose value has not been specified in a preference. A NegotiableCapability which is a preference should return true from the isPreference method, a non-preference object that defines values for all the parameters (or relies on defaults) should return false from this method. As a rule, the result of negotiation between one non-preference and another is a non-preference, between a preference and a non-preference is a non-preference and that between two preferences is a preference, if the negotiation is successful. It may be noted that preferences are not expected to specify their generators, since in general, preferences don't come from objects that can support them. However if generators are specified within a preference, they will be added to the set of generators of the resultant NegotiableCapability in the event of a successful negotiation.

Negotiation between a preference and a non-preference NegotiableCapability results in a non-preference NegotiableCapability. For each parameter, if a value is specified (i.e the value is not null) in both the preference and the non-preference, then if these values have a common subset, the negotiation will succeed on this parameter, if there is no commonality, then the negotiation will fail on this parameter and thus also fail as a whole. If the preference doesn't specify a value for a parameter (i.e the value is null), then the value specified by the non-preference for that same parameter is chosen as a result of the successful negotiation on that parameter.

Negotiation between two preference NegotiableCapability objects results in a preference NegotiableCapability. For each parameter, if a value is specified (i.e the value is not null) in both the preference objects, the negotiation on that parameter will have a value which is the portion that is common to both. If there is no commonality, negotiation will fail on this parameter (null will be returned) and thus also fail as a whole. If the value for a particular parameter is specified in one preference and not in the other, the negotiated value will be the one specified. If for a particular parameter, no value is specified in either preference, the negotiated value for that parameter will be null, and the negotiation as a whole on the NegotiableCapability will not fail.

When a preference NegotiableCapability is constructed, the values of all the parameters defined in the ParameterListDescriptor returned from getParameterListDescriptor method, are initialized to null. null within this class represents a value that has not been specified. Such values are only allowed on a preference NegotiableCapability. On the other hand when a non-preference NegotiableCapability is constructed, all the values are initialized to their default values.

All names are treated in a case-retentive and case-insensitive manner.
since:
   JAI 1.1




Constructor Summary
public  NegotiableCapability(String category, String capabilityName, List generators, ParameterListDescriptor descriptor, boolean isPreference)
     Creates a NegotiableCapability with the specified category and capabilityName.
Parameters:
  category - The category this capability belongs to.
Parameters:
  capabilityName - The name of this capability.
Parameters:
  generators - A List containing representationsof the objects that generated thisNegotiableCapability or null, ifthere are none.
Parameters:
  descriptor - The descriptor that describes the parameters forthis class.
Parameters:
  isPreference - Boolean specifying whether this class representsa preference or a non-preference.
throws:
  IllegalArgumentException - if category is null.
throws:
  IllegalArgumentException - if capabilityName is null.
throws:
  IllegalArgumentException - if descriptor is null.
throws:
  IllegalArgumentException - if any of the default values returnedfrom the supplied descriptor's getParamDefaults() method isParameterListDescriptor.NO_PARAMETER_DEFAULT.

Method Summary
public  booleanareParameterListDescriptorsCompatible(NegotiableCapability other)
     Returns true if the ParameterListDescriptor of the supplied NegotiableCapability is compatible with the ParameterListDescriptor of this class for negotiation purposes.
public  booleangetBooleanParameter(String paramName)
     Overrides the method in ParameterListImpl to throw an IllegalArgumentException since parameter values in this class are Negotiable and therefore cannot be returned as a primitive data type.
public  bytegetByteParameter(String paramName)
     Overrides the method in ParameterListImpl to throw an IllegalArgumentException since parameter values in this class are Negotiable and therefore cannot be returned as a primitive data type.
public  StringgetCapabilityName()
     Returns the name of this NegotiableCapability.
public  StringgetCategory()
     Returns the category of this NegotiableCapability.
public  chargetCharParameter(String paramName)
     Overrides the method in ParameterListImpl to throw an IllegalArgumentException since parameter values in this class are Negotiable and therefore cannot be returned as a primitive data type.
public  doublegetDoubleParameter(String paramName)
     Overrides the method in ParameterListImpl to throw an IllegalArgumentException since parameter values in this class are Negotiable and therefore cannot be returned as a primitive data type.
public  floatgetFloatParameter(String paramName)
     Overrides the method in ParameterListImpl to throw an IllegalArgumentException since parameter values in this class are Negotiable and therefore cannot be returned as a primitive data type.
public  ListgetGenerators()
     Returns the List containing representations of the objects that generated this NegotiableCapability.
public  intgetIntParameter(String paramName)
     Overrides the method in ParameterListImpl to throw an IllegalArgumentException since parameter values in this class are Negotiable and therefore cannot be returned as a primitive data type.
public  longgetLongParameter(String paramName)
     Overrides the method in ParameterListImpl to throw an IllegalArgumentException since parameter values in this class are Negotiable and therefore cannot be returned as a primitive data type.
public  ObjectgetNegotiatedValue(String parameterName)
     Returns a single negotiated value from the Negotiable that represents the set of valid values for the given parameter.
public  shortgetShortParameter(String paramName)
     Overrides the method in ParameterListImpl to throw an IllegalArgumentException since parameter values in this class are Negotiable and therefore cannot be returned as a primitive data type.
public  booleanisPreference()
     Returns true if this NegotiableCapability is a preference, false otherwise.
public  NegotiableCapabilitynegotiate(NegotiableCapability capability)
     Performs negotiation between this NegotiableCapability and the given NegotiableCapability.
public  voidsetGenerators(List generators)
     Set the specified List as the generators for this NegotiableCapability.
public  ParameterListsetParameter(String paramName, byte b)
     Overrides the method in ParameterListImpl to throw an IllegalArgumentException since parameter values set on this class must be a Negotiable.
public  ParameterListsetParameter(String paramName, boolean b)
     Overrides the method in ParameterListImpl to throw an IllegalArgumentException since parameter values set on this class must be a Negotiable.
public  ParameterListsetParameter(String paramName, char c)
     Overrides the method in ParameterListImpl to throw an IllegalArgumentException since parameter values set on this class must be a Negotiable.
public  ParameterListsetParameter(String paramName, short s)
     Overrides the method in ParameterListImpl to throw an IllegalArgumentException since parameter values set on this class must be a Negotiable.
public  ParameterListsetParameter(String paramName, int i)
     Overrides the method in ParameterListImpl to throw an IllegalArgumentException since parameter values set on this class must be a Negotiable.
public  ParameterListsetParameter(String paramName, long l)
     Overrides the method in ParameterListImpl to throw an IllegalArgumentException since parameter values set on this class must be a Negotiable.
public  ParameterListsetParameter(String paramName, float f)
     Overrides the method in ParameterListImpl to throw an IllegalArgumentException since parameter values set on this class must be a Negotiable.
public  ParameterListsetParameter(String paramName, double d)
     Overrides the method in ParameterListImpl to throw an IllegalArgumentException since parameter values set on this class must be a Negotiable.
public  ParameterListsetParameter(String paramName, Object obj)
     Overrides the superclass method to ensure only a Negotiable object can be added as the value of the parameter.


Constructor Detail
NegotiableCapability
public NegotiableCapability(String category, String capabilityName, List generators, ParameterListDescriptor descriptor, boolean isPreference)(Code)
Creates a NegotiableCapability with the specified category and capabilityName.
Parameters:
  category - The category this capability belongs to.
Parameters:
  capabilityName - The name of this capability.
Parameters:
  generators - A List containing representationsof the objects that generated thisNegotiableCapability or null, ifthere are none.
Parameters:
  descriptor - The descriptor that describes the parameters forthis class.
Parameters:
  isPreference - Boolean specifying whether this class representsa preference or a non-preference.
throws:
  IllegalArgumentException - if category is null.
throws:
  IllegalArgumentException - if capabilityName is null.
throws:
  IllegalArgumentException - if descriptor is null.
throws:
  IllegalArgumentException - if any of the default values returnedfrom the supplied descriptor's getParamDefaults() method isParameterListDescriptor.NO_PARAMETER_DEFAULT. null should be used torepresent the absence of a default.
throws:
  IllegalArgumentException - if any of the Classtypes returned from the supplied descriptor's getParamClasses() methoddoes not implement Negotiable.




Method Detail
areParameterListDescriptorsCompatible
public boolean areParameterListDescriptorsCompatible(NegotiableCapability other)(Code)
Returns true if the ParameterListDescriptor of the supplied NegotiableCapability is compatible with the ParameterListDescriptor of this class for negotiation purposes. If both the NegotiableCapability objects are non-preferences, both the number of parameters as well as the Class type of the parameters has to match for this method to return true. If either one or both of the NegotiableCapability objects is a preference, then the Class type of the same named parameters in both the NegotiableCapability object's ParameterListDescriptors has to match for this method to return true.
Parameters:
  other - The NegotiableCapability to checkcompatibility for negotiation purposes for.
throws:
  IllegalArgumentException - if other is null.



getBooleanParameter
public boolean getBooleanParameter(String paramName)(Code)
Overrides the method in ParameterListImpl to throw an IllegalArgumentException since parameter values in this class are Negotiable and therefore cannot be returned as a primitive data type.
Parameters:
  paramName - the name of the parameter to be returned.
throws:
  IllegalArgumentException - since a Negotiable valuecannot be returned as a primitive data type.



getByteParameter
public byte getByteParameter(String paramName)(Code)
Overrides the method in ParameterListImpl to throw an IllegalArgumentException since parameter values in this class are Negotiable and therefore cannot be returned as a primitive data type.
Parameters:
  paramName - the name of the parameter to be returned.
throws:
  IllegalArgumentException - since a Negotiable valuecannot be returned as a primitive data type.



getCapabilityName
public String getCapabilityName()(Code)
Returns the name of this NegotiableCapability.



getCategory
public String getCategory()(Code)
Returns the category of this NegotiableCapability.



getCharParameter
public char getCharParameter(String paramName)(Code)
Overrides the method in ParameterListImpl to throw an IllegalArgumentException since parameter values in this class are Negotiable and therefore cannot be returned as a primitive data type.
Parameters:
  paramName - the name of the parameter to be returned.
throws:
  IllegalArgumentException - since a Negotiable valuecannot be returned as a primitive data type.



getDoubleParameter
public double getDoubleParameter(String paramName)(Code)
Overrides the method in ParameterListImpl to throw an IllegalArgumentException since parameter values in this class are Negotiable and therefore cannot be returned as a primitive data type.
Parameters:
  paramName - the name of the parameter to be returned.
throws:
  IllegalArgumentException - since a Negotiable valuecannot be returned as a primitive data type.



getFloatParameter
public float getFloatParameter(String paramName)(Code)
Overrides the method in ParameterListImpl to throw an IllegalArgumentException since parameter values in this class are Negotiable and therefore cannot be returned as a primitive data type.
Parameters:
  paramName - the name of the parameter to be returned.
throws:
  IllegalArgumentException - since a Negotiable valuecannot be returned as a primitive data type.



getGenerators
public List getGenerators()(Code)
Returns the List containing representations of the objects that generated this NegotiableCapability. This method will return null, if there are no generators for this NegotiableCapability.



getIntParameter
public int getIntParameter(String paramName)(Code)
Overrides the method in ParameterListImpl to throw an IllegalArgumentException since parameter values in this class are Negotiable and therefore cannot be returned as a primitive data type.
Parameters:
  paramName - the name of the parameter to be returned.
throws:
  IllegalArgumentException - since a Negotiable valuecannot be returned as a primitive data type.



getLongParameter
public long getLongParameter(String paramName)(Code)
Overrides the method in ParameterListImpl to throw an IllegalArgumentException since parameter values in this class are Negotiable and therefore cannot be returned as a primitive data type.
Parameters:
  paramName - the name of the parameter to be returned.
throws:
  IllegalArgumentException - since a Negotiable valuecannot be returned as a primitive data type.



getNegotiatedValue
public Object getNegotiatedValue(String parameterName)(Code)
Returns a single negotiated value from the Negotiable that represents the set of valid values for the given parameter. This method uses the Negotiable.getNegotiatedValue to get the negotiated value for the Negotiable value of the parameter specified by parameterName. If this NegotiableCapability is a non-preference, then a valid Negotiable must be present as the value of the specified parameter, and a single value from that Negotiable will be returned. If this NegotiableCapability is a preference the specified parameter may have a null as its value. In this case, this null will be returned as the negotiated value.
Parameters:
  parameterName - The name of parameter to return the negotiatedvalue for.
throws:
  IllegalArgumentException - if the parameterName is not one ofthose described by the associated ParameterListDescriptor.



getShortParameter
public short getShortParameter(String paramName)(Code)
Overrides the method in ParameterListImpl to throw an IllegalArgumentException since parameter values in this class are Negotiable and therefore cannot be returned as a primitive data type.
Parameters:
  paramName - the name of the parameter to be returned.
throws:
  IllegalArgumentException - since a Negotiable valuecannot be returned as a primitive data type.



isPreference
public boolean isPreference()(Code)
Returns true if this NegotiableCapability is a preference, false otherwise.



negotiate
public NegotiableCapability negotiate(NegotiableCapability capability)(Code)
Performs negotiation between this NegotiableCapability and the given NegotiableCapability. Returns the common subset supported by this NegotiableCapability and the given NegotiableCapability if the negotiation is successful, null otherwise.

In order for the negotiation to be successful, the category and the capabilityName of the supplied NegotiableCapability object must be the same as of this class. In addition, negotiation on each of the parameters must be successful. Since each parameter is represented as a Negotiable, negotiation on it can be performed using the Negotiable.negotiate() method. The NegotiableCapability returned contains the same category, capabilityName as that of this class and also includes the negotiated values for each parameter. If the negotiation fails for any one parameter, the negotiation for the NegotiableCapabilitys as a whole is said to fail and a null is returned. The result of negotiation between one non-preference and another is a non-preference, between a preference and a non-preference is a non-preference and that between two preferences is a preference, if the negotiation is successful. If this NegotiableCapability is a non-preference, i.e the isPreference() method returns false, and the supplied NegotiableCapability argument is also a non-preference, then the negotiation will fail if the number and Class of parameters in both the NegotiableCapability objects is not the same. If either one of the NegotiableCapability objects is a preference and the other is a non-preference, the number of parameters are not required to match. For those parameters whose names are the same in both the NegotiableCapability objects, the Class types have to match, otherwise the negotiation will fail. Those parameters that exist in the non-preference NegotiableCapability object but not in the preference NegotiableCapability object do not take part in the negotiation, but are directly set on the resultant NegotiableCapability object if the negotiation is successful on the common parameters. Those parameters that exist in the preference NegotiableCapability object but not in the non-preference NegotiableCapability object are ignored, do not take part in the negotiation and are not reflected in the resultant NegotiableCapability in the event of a successful negotiation. If both the NegotiableCapability objects are preferences, then only the common parameters take part in the negotiation and the ones that aren't present in both the NegotiableCapabilitys are directly set on the resultant NegotiableCapability object if the negotiation is successful on the common parameters. For the common parameters, the Class types have to match, otherwise the negotiation will fail. The check for the compatibility of the ParameterListDescriptor of the supplied NegotiableCapability with the current NegotiableCapability's ParameterListDescriptor is done using the areParameterListDescriptorsCompatible() method. It may be noted that the ParameterListDescriptor of the NegotiableCapability returned as a result of a successful negotiation will implement the getParamDefaults() and the getParamValueRange() methods in terms of the values returned from the same methods on the ParameterListDescriptor associated with this class, if the negotiation took place between two preferences, or from the same methods on the ParameterListDescriptor associated with the non-preference otherwise.

If the supplied NegotiableCapability is null, then the negotiation will fail and null will be returned.
Parameters:
  capability - The NegotiableCapability to negotiatewith.




setGenerators
public void setGenerators(List generators)(Code)
Set the specified List as the generators for this NegotiableCapability. A generator is a representation of the object that generated this NegotiableCapability.
Parameters:
  generators - The List of generators.



setParameter
public ParameterList setParameter(String paramName, byte b)(Code)
Overrides the method in ParameterListImpl to throw an IllegalArgumentException since parameter values set on this class must be a Negotiable.
Parameters:
  paramName - a String naming a parameter.
Parameters:
  b - a byte value for the parameter.
throws:
  IllegalArgumentException - since the value being set is not aNegotiable.



setParameter
public ParameterList setParameter(String paramName, boolean b)(Code)
Overrides the method in ParameterListImpl to throw an IllegalArgumentException since parameter values set on this class must be a Negotiable.
Parameters:
  paramName - a String naming a parameter.
Parameters:
  b - a boolean value for the parameter.
throws:
  IllegalArgumentException - since the value being set is not aNegotiable.



setParameter
public ParameterList setParameter(String paramName, char c)(Code)
Overrides the method in ParameterListImpl to throw an IllegalArgumentException since parameter values set on this class must be a Negotiable.
Parameters:
  paramName - a String naming a parameter.
Parameters:
  c - a char value for the parameter.
throws:
  IllegalArgumentException - since the value being set is not aNegotiable.



setParameter
public ParameterList setParameter(String paramName, short s)(Code)
Overrides the method in ParameterListImpl to throw an IllegalArgumentException since parameter values set on this class must be a Negotiable.
Parameters:
  paramName - a String naming a parameter.
Parameters:
  s - a short value for the parameter.
throws:
  IllegalArgumentException - since the value being set is not aNegotiable.



setParameter
public ParameterList setParameter(String paramName, int i)(Code)
Overrides the method in ParameterListImpl to throw an IllegalArgumentException since parameter values set on this class must be a Negotiable.
Parameters:
  paramName - a String naming a parameter.
Parameters:
  i - an int value for the parameter.
throws:
  IllegalArgumentException - since the value being set is not aNegotiable.



setParameter
public ParameterList setParameter(String paramName, long l)(Code)
Overrides the method in ParameterListImpl to throw an IllegalArgumentException since parameter values set on this class must be a Negotiable.
Parameters:
  paramName - a String naming a parameter.
Parameters:
  l - a long value for the parameter.
throws:
  IllegalArgumentException - since the value being set is not aNegotiable.



setParameter
public ParameterList setParameter(String paramName, float f)(Code)
Overrides the method in ParameterListImpl to throw an IllegalArgumentException since parameter values set on this class must be a Negotiable.
Parameters:
  paramName - a String naming a parameter.
Parameters:
  f - a float value for the parameter.
throws:
  IllegalArgumentException - since the value being set is not aNegotiable.



setParameter
public ParameterList setParameter(String paramName, double d)(Code)
Overrides the method in ParameterListImpl to throw an IllegalArgumentException since parameter values set on this class must be a Negotiable.
Parameters:
  paramName - a String naming a parameter.
Parameters:
  d - a double value for the parameter.
throws:
  IllegalArgumentException - since the value being set is not aNegotiable.



setParameter
public ParameterList setParameter(String paramName, Object obj)(Code)
Overrides the superclass method to ensure only a Negotiable object can be added as the value of the parameter.
Parameters:
  paramName - A String naming a parameter.
Parameters:
  obj - An Object value for the parameter.
throws:
  IllegalArgumentException - if obj is not an instance ofNegotiable.



Methods inherited from javax.media.jai.ParameterListImpl
public boolean getBooleanParameter(String paramName)(Code)(Java Doc)
public byte getByteParameter(String paramName)(Code)(Java Doc)
public char getCharParameter(String paramName)(Code)(Java Doc)
public double getDoubleParameter(String paramName)(Code)(Java Doc)
public float getFloatParameter(String paramName)(Code)(Java Doc)
public int getIntParameter(String paramName)(Code)(Java Doc)
public long getLongParameter(String paramName)(Code)(Java Doc)
public Object getObjectParameter(String paramName)(Code)(Java Doc)
public ParameterListDescriptor getParameterListDescriptor()(Code)(Java Doc)
public short getShortParameter(String paramName)(Code)(Java Doc)
public ParameterList setParameter(String paramName, byte b)(Code)(Java Doc)
public ParameterList setParameter(String paramName, boolean b)(Code)(Java Doc)
public ParameterList setParameter(String paramName, char c)(Code)(Java Doc)
public ParameterList setParameter(String paramName, short s)(Code)(Java Doc)
public ParameterList setParameter(String paramName, int i)(Code)(Java Doc)
public ParameterList setParameter(String paramName, long l)(Code)(Java Doc)
public ParameterList setParameter(String paramName, float f)(Code)(Java Doc)
public ParameterList setParameter(String paramName, double d)(Code)(Java Doc)
public ParameterList setParameter(String paramName, Object obj)(Code)(Java Doc)

Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.