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


javax.media.jai.PropertyGenerator

All known Subclasses:   javax.media.jai.operator.SubsampleAveragePropertyGenerator,  com.sun.media.jai.util.PropertyGeneratorImpl,
PropertyGenerator
public interface PropertyGenerator extends Serializable(Code)
An interface through which properties may be computed dynamically with respect to an environment of pre-existing properties. In the interest of simplicity and consistency, a PropertyGenerator is required to be a pure function; that is, if called multiple times with the same environment it must produce identical results.

The OperationRegistry class allows PropertyGenerators to be associated with a particular operation type, and will automatically insert them into imaging chains as needed.

Properties are treated in a case-insensitive manner.
See Also:   OperationRegistry





Method Summary
 booleancanGenerateProperties(Object opNode)
     Determines whether the specified Object will be recognized by getProperty(String,Object).
 ClassgetClass(String propertyName)
     Returns the class expected to be returned by a request for the property with the specified name.
 ObjectgetProperty(String name, Object opNode)
     Computes the value of a property relative to an environment of pre-existing properties.
 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.

 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 name, sources, and ParameterBlock of the RenderableOp being processed may be obtained by means of the op.getOperationName, op.getSources(), and op.getParameterBlock() methods.

 String[]getPropertyNames()
     Returns an array of Strings naming properties emitted by this property generator.



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



getClass
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.
since:
   JAI 1.1



getProperty
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.
since:
   JAI 1.1




getProperty
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
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 name, sources, and ParameterBlock of the RenderableOp 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 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
String[] getPropertyNames()(Code)
Returns an array of Strings naming properties emitted by this property generator. The Strings may contain characters of any case. an array of Strings that may be passed as parameternames to the getProperty() method.



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