Java
  Home arrow Java arrow Page 4 - Java 2D in the Real World
Dev Articles Forums 
ADO.NET  
Apache  
ASP  
ASP.NET  
C#  
C++  
ColdFusion  
COM/COM+  
Delphi-Kylix  
Design Usability  
Development Cycles  
DHTML  
Embedded Tools  
Flash  
Graphic Design  
HTML  
IIS  
Interviews  
Java  
JavaScript  
MySQL  
Oracle  
Photoshop  
PHP  
Reviews  
Ruby-on-Rails  
SQL  
SQL Server  
Style Sheets  
VB.Net  
Visual Basic  
Web Authoring  
Web Services  
Web Standards  
XML  
Mobile Linux 
App Generation ROI 
IBM® developerWorks 
Sun Developer Network 
Weekly Newsletter
 
Developer Updates  
Free Website Content 
 RSS  Articles
 RSS  Forums
 RSS  All Feeds
Write For Us Get Paid 
Request Media Kit
Contact Us 
Site Map 
Privacy Policy 
Support 
 USERNAME
 
 PASSWORD
 
 
  >>> SIGN UP!  
  Lost Password? 
JAVA

Java 2D in the Real World
By: A.P.Rajshekhar
  • Search For More Articles!
  • Disclaimer
  • Author Terms
  • Rating: 3 stars3 stars3 stars3 stars3 stars / 4
    2007-05-09

    Table of Contents:
  • Java 2D in the Real World
  • The Paint Bar
  • The ImageFrame
  • The Entry Point

  • Rate this Article: Poor Best 
      ADD THIS ARTICLE TO:
      Del.ici.ous Digg
      Blink Simpy
      Google Spurl
      Y! MyWeb Furl
    Email Me Similar Content When Posted
    Add Developer Shed Article Feed To Your Site
    Email Article To Friend
    Print Version Of Article
    PDF Version Of Article
     
     
    ADVERTISEMENT


    Java 2D in the Real World - The Entry Point


    (Page 4 of 4 )

     

    And the following is the entry point of the application:

      

    package Kucchi;

       

    import javax.swing.JFrame;

    import java.awt.event.WindowAdapter;

    import java.awt.event.WindowEvent;

    import java.awt.Container;

    import Kucchi.*;

    import java.awt.BorderLayout;

      

    public class Kucchi extends JFrame {

      

     

        /** Creates a new instance of Kucchi */

        public Kucchi() {

            setJMenuBar(new Kucchi_MenuBar());

            Container c = getContentPane();

            Kucchi_QuickBar q_bar = new Kucchi_QuickBar();

     

     

     

            Kucchi_PaintBar p_bar = new Kucchi_PaintBar();

     

     

     

            Kucchi_ColorBar c_bar = new Kucchi_ColorBar();

     

     

     

            c.add(q_bar,BorderLayout.NORTH);

            c.add(p_bar,BorderLayout.WEST);

            c.add(c_bar,BorderLayout.CENTER);

            initComponents();

        }

     

     

     

        private void initComponents() {

            addWindowListener(new WindowAdapter() {

                public void windowClosing(WindowEvent evt) {

                    System.exit(0);

                }

            });

     

     

     

            pack();

        }

     

     

     

        public static void main(String args[]) {

            int ToolNum;

            Kucchi K = new Kucchi();

            K.setSize(800,600);

            K.show();

        }

    }  

     

    That brings us to the end of this discussion. Many of the advanced aspects of the Java 2D API have been used in the above application. I will be discussing each of them one by one in upcoming articles starting with image manipulation in the next part. By the way, in Hindi "Kucchi" means "brush." Till then…


    DISCLAIMER: The content provided in this article is not warranted or guaranteed by Developer Shed, Inc. The content provided is intended for entertainment and/or educational purposes in order to introduce to the reader key ideas, concepts, and/or product reviews. As such it is incumbent upon the reader to employ real-world tactics for security and implementation of best practices. We are not liable for any negative consequences that may result from implementing any information covered in our articles or tutorials. If this is a hardware review, it is not recommended to open and/or modify your hardware.

     

    JAVA ARTICLES

    - Deploying Multiple Java Applets as One
    - Deploying Java Applets
    - Understanding Deployment Frameworks
    - Database Programming in Java Using JDBC
    - Extension Interfaces and SAX
    - Entities, Handlers and SAX
    - Advanced SAX
    - Conversions and Java Print Streams
    - Formatters and Java Print Streams
    - Java Print Streams
    - Wildcards, Arrays, and Generics in Java
    - Wildcards and Generic Methods in Java
    - Finishing the Project: Java Web Development ...
    - Generics and Limitations in Java
    - Getting Started with Java Web Development in...






    © 2003-2008 by Developer Shed. All rights reserved. DS Cluster 4 hosted by Hostway
    Stay green...Green IT