Heavy Weight « Component « Java Swing Q&A





3. Swing heavy-weight components    coderanch.com

4. Heavy Weight Components in SWING    coderanch.com

5. What are heavyweight components?    coderanch.com

When the original AWT API was developed for JDK 1.0, only heavyweight components existed ("heavyweight" means that the component has it's own opaque native window). This allowed the AWT to rely heavily on the paint subsystem in each native platform. This scheme took care of details such as damage detection, clip calculation, and z-ordering. With the introduction of lightweight components in ...

7. heavy weight component in Swings    coderanch.com

8. Transarent background over heavyweight components    java-forums.org

I've got a problem. In LayeredPane I have 2 components: heavyweight coponent and JComponent(or any other what I could draw text in) that is placed above the first one. I'd like JComponent to have transparent background, but it has black background. Heavyweight coponent is a component that renders video and JComponent is component what I draw text in. This text should ...