Java Doc for AlphaComposite.java in  » 6.0-JDK-Modules » j2me » java » awt » 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 » j2me » java.awt 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   java.awt.AlphaComposite

AlphaComposite
final public class AlphaComposite implements Composite(Code)


Field Summary
final public static  intCLEAR
     Porter-Duff Clear rule.
final public static  AlphaCompositeClear
     AlphaComposite object that implements the opaque CLEAR rule with an alpha of 1.0f.
final public static  intSRC
     Porter-Duff Source rule.
final public static  intSRC_OVER
     Porter-Duff Source Over Destination rule.
final public static  AlphaCompositeSrc
     AlphaComposite object that implements the opaque SRC rule with an alpha of 1.0f.
final public static  AlphaCompositeSrcOver
     AlphaComposite object that implements the opaque SRC_OVER rule with an alpha of 1.0f.
 floatextraAlpha
    
 intrule
    


Method Summary
public  booleanequals(Object obj)
     Tests if the specified Object is equal to this AlphaComposite object.
public  floatgetAlpha()
     Returns the alpha value of thisAlphaComposite.
public static  AlphaCompositegetInstance(int rule)
     Creates an AlphaComposite object with the specified rule.
public static  AlphaCompositegetInstance(int rule, float alpha)
     Creates an AlphaComposite object with the specified rule and the constant alpha to multiply with the alpha of the source. The source is multiplied with the specified alpha before being composited with the destination.
Parameters:
  rule - the compositing rule
Parameters:
  alpha - the constant alpha to be multiplied with the alpha ofthe source.
public  intgetRule()
     Returns the compositing rule of this AlphaComposite.
public  inthashCode()
     Returns the hashcode for this composite.

Field Detail
CLEAR
final public static int CLEAR(Code)
Porter-Duff Clear rule. Both the color and the alpha of the destination are cleared. Neither the source nor the destination is used as input.

Fs = 0 and Fd = 0, thus:

 Cd = 0
 Ad = 0
 



Clear
final public static AlphaComposite Clear(Code)
AlphaComposite object that implements the opaque CLEAR rule with an alpha of 1.0f.
See Also:   AlphaComposite.CLEAR



SRC
final public static int SRC(Code)
Porter-Duff Source rule. The source is copied to the destination. The destination is not used as input.

Fs = 1 and Fd = 0, thus:

 Cd = Cs
 Ad = As
 



SRC_OVER
final public static int SRC_OVER(Code)
Porter-Duff Source Over Destination rule. The source is composited over the destination.

Fs = 1 and Fd = (1-As), thus:

 Cd = Cs + Cd*(1-As)
 Ad = As + Ad*(1-As)
 



Src
final public static AlphaComposite Src(Code)
AlphaComposite object that implements the opaque SRC rule with an alpha of 1.0f.
See Also:   AlphaComposite.SRC



SrcOver
final public static AlphaComposite SrcOver(Code)
AlphaComposite object that implements the opaque SRC_OVER rule with an alpha of 1.0f.
See Also:   AlphaComposite.SRC_OVER



extraAlpha
float extraAlpha(Code)



rule
int rule(Code)





Method Detail
equals
public boolean equals(Object obj)(Code)
Tests if the specified Object is equal to this AlphaComposite object.
Parameters:
  obj - the Object to test for equality true if obj equals thisAlphaComposite; false otherwise.



getAlpha
public float getAlpha()(Code)
Returns the alpha value of thisAlphaComposite. If this AlphaComposite does not have an alpha value, 1.0 is returned. the alpha value of this AlphaComposite.



getInstance
public static AlphaComposite getInstance(int rule)(Code)
Creates an AlphaComposite object with the specified rule.
Parameters:
  rule - the compositing rule
throws:
  IllegalArgumentException - if rule is not one ofthe following: AlphaComposite.CLEAR, AlphaComposite.SRC, AlphaComposite.DST,AlphaComposite.SRC_OVER, AlphaComposite.DST_OVER, AlphaComposite.SRC_IN,AlphaComposite.DST_IN, AlphaComposite.SRC_OUT, AlphaComposite.DST_OUT,AlphaComposite.SRC_ATOP, AlphaComposite.DST_ATOP, or AlphaComposite.XOR



getInstance
public static AlphaComposite getInstance(int rule, float alpha)(Code)
Creates an AlphaComposite object with the specified rule and the constant alpha to multiply with the alpha of the source. The source is multiplied with the specified alpha before being composited with the destination.
Parameters:
  rule - the compositing rule
Parameters:
  alpha - the constant alpha to be multiplied with the alpha ofthe source. alpha must be a floating point number in theinclusive range [0.0, 1.0].



getRule
public int getRule()(Code)
Returns the compositing rule of this AlphaComposite. the compositing rule of this AlphaComposite.



hashCode
public int hashCode()(Code)
Returns the hashcode for this composite. a hash code for this composite.



Methods inherited from java.lang.Object
public boolean equals(Object obj)(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.