Java Doc for PropertyGeneratorImpl.java in  » 6.0-JDK-Modules » Java-Advanced-Imaging » com » sun » media » jai » util » 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 » com.sun.media.jai.util 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   com.sun.media.jai.util.PropertyGeneratorImpl

All known Subclasses:   javax.media.jai.operator.ComplexPropertyGenerator,  javax.media.jai.operator.FilteredSubsamplePropertyGenerator,  javax.media.jai.operator.IDFTPropertyGenerator,  javax.media.jai.operator.AffinePropertyGenerator,  javax.media.jai.operator.ScalePropertyGenerator,  javax.media.jai.operator.SubsampleBinaryToGrayPropertyGenerator,  javax.media.jai.operator.TransposePropertyGenerator,  javax.media.jai.operator.DFTPropertyGenerator,  javax.media.jai.operator.ShearPropertyGenerator,  javax.media.jai.PropertyGeneratorFromSource,  javax.media.jai.operator.RotatePropertyGenerator,  javax.media.jai.operator.ImageFunctionPropertyGenerator,  javax.media.jai.operator.TranslatePropertyGenerator,  javax.media.jai.operator.WarpPropertyGenerator,  com.sun.media.jai.util.AreaOpPropertyGenerator,
PropertyGeneratorImpl
abstract public class PropertyGeneratorImpl implements PropertyGenerator(Code)
This utility class provides an implementation of the PropertyGenerator interface that is suitable for extending. In addition to providing a no-arg constructor which passes the appropriate arrays, subclasses need only override the method getProperty(String,Object) in which the method validate() should be invoked as the first statement.
See Also:   PropertyGenerator



Constructor Summary
protected  PropertyGeneratorImpl(String[] propertyNames, Class[] propertyClasses, Class[] supportedOpClasses)
     Constructs a PropertyGeneratorImpl.

Method Summary
public  booleancanGenerateProperties(Object opNode)
     Determines whether the specified Object will be recognized by getProperty(String,Object).
public  ClassgetClass(String propertyName)
     Returns the class expected to be returned by a request for the property with the specified name.
abstract public  ObjectgetProperty(String name, Object opNode)
     Computes the value of a property relative to an environment of pre-existing properties.
public  ObjectgetProperty(String name, RenderedOp op)
     Computes the value of a property relative to an environment of pre-existing properties emitted by the sources of a RenderedOp, and the parameters of that operation.

The operation name, sources, and ParameterBlock of the RenderedOp being processed may be obtained by means of the op.getOperationName, op.getSources(), and op.getParameterBlock() methods.

public  ObjectgetProperty(String name, RenderableOp op)
     Computes the value of a property relative to an environment of pre-existing properties emitted by the sources of a RenderableOp, and the parameters of that operation.

The operation sources and ParameterBlock of the RenderableOp being processed may be obtained by means of the op.getSources() and op.getParameterBlock() methods.

public  String[]getPropertyNames()
     Returns an array of Strings naming properties emitted by this property generator.
protected  voidvalidate(String name, Object opNode)
     Throws an exception if the arguments are illegal for getProperty(String,Object).


Constructor Detail
PropertyGeneratorImpl
protected PropertyGeneratorImpl(String[] propertyNames, Class[] propertyClasses, Class[] supportedOpClasses)(Code)
Constructs a PropertyGeneratorImpl. All parameters are saved by reference.
Parameters:
  propertyNames - Names of emitted properties.
Parameters:
  propertyClasses - Classes of emitted properties.
Parameters:
  supportedOpClasses - Classes of supported op nodes.
exception:
  IllegalArgumentException - if any of the array parametersis null.
exception:
  IllegalArgumentException - if any of the array parametershas length zero.
exception:
  IllegalArgumentException - if the lengths of the arrayspropertyNames and propertyClassesare unequal.




Method Detail
canGenerateProperties
public boolean canGenerateProperties(Object opNode)(Code)
Determines whether the specified Object will be recognized by getProperty(String,Object).
exception:
  IllegalArgumentException - if opNodeis null.



getClass
public Class getClass(String propertyName)(Code)
Returns the class expected to be returned by a request for the property with the specified name. If this information is unavailable, null will be returned indicating that getProperty(propertyName).getClass() should be executed instead. A null value might be returned for example to prevent generating the value of a deferred property solely to obtain its class. The Class expected to be return by arequest for the value of this property or null.
exception:
  IllegalArgumentException - if propertyNameis null.



getProperty
abstract public Object getProperty(String name, Object opNode)(Code)
Computes the value of a property relative to an environment of pre-existing properties. The case of the supplied String is ignored.

In the case of an OperationNode in a chain of operations these properties may be emitted by the sources of the node in a chain or the parameters of that operation. The information requisite to compute the requested property must be available via the supplied OperationNode. It is legal to call getProperty() on the operation's sources.
Parameters:
  name - the name of the property, as a String.
Parameters:
  op - the Object from which properties willbe generated. the value of the property, as an Object or thevalue java.awt.Image.UndefinedProperty.
exception:
  IllegalArgumentException - if name oropNode is null.
exception:
  IllegalArgumentException - if opNode isnot an instance of a supported class for this method, i.e.,canGenerateProperties(opNode) returnsfalse.




getProperty
public Object getProperty(String name, RenderedOp op)(Code)
Computes the value of a property relative to an environment of pre-existing properties emitted by the sources of a RenderedOp, and the parameters of that operation.

The operation name, sources, and ParameterBlock of the RenderedOp being processed may be obtained by means of the op.getOperationName, op.getSources(), and op.getParameterBlock() methods. It is legal to call getProperty() on the operation's sources.
Parameters:
  name - the name of the property, as a String.
Parameters:
  op - the RenderedOp representing the operation. the value of the property, as an Object or thevalue java.awt.Image.UndefinedProperty.
exception:
  IllegalArgumentException - if name orop is null.




getProperty
public Object getProperty(String name, RenderableOp op)(Code)
Computes the value of a property relative to an environment of pre-existing properties emitted by the sources of a RenderableOp, and the parameters of that operation.

The operation sources and ParameterBlock of the RenderableOp being processed may be obtained by means of the op.getSources() and op.getParameterBlock() methods. It is legal to call getProperty() on the operation's sources.
Parameters:
  name - the name of the property, as a String.
Parameters:
  op - the RenderableOp representing the operation. the value of the property, as an Object or thevalue java.awt.Image.UndefinedProperty.
exception:
  IllegalArgumentException - if name orop is null.




getPropertyNames
public String[] getPropertyNames()(Code)
Returns an array of Strings naming properties emitted by this property generator. an array of Strings that may be passed as parameternames to the getProperty() method.



validate
protected void validate(String name, Object opNode)(Code)
Throws an exception if the arguments are illegal for getProperty(String,Object).
Parameters:
  name - the name of the property, as a String.
Parameters:
  op - the Object from which properties willbe generated.
exception:
  IllegalArgumentException - if name oropNode is null.
exception:
  IllegalArgumentException - if opNode isnot an instance of a supported class for this method, i.e.,canGenerateProperties(opNode) returnsfalse.



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.