Home | Ajax | BioInformatics | Dojo | EAI | EJB | Hibernate | J2ME | Java | Java Glossary | Java Servlets | JavaScript | Jboss | JDBC | JDO | Jmeter | JSF | JSP | JUnit | Maven | MySQL | Spring Framework | SQL | Struts | Technology | WAP | Web Services | XML


 
  
 
Programming Tutorials: Ajax | Articles | JSP | Bioinformatics | Database | Free Books | Hibernate | J2EE | J2ME | Java | JavaScript | JDBC | JMS | Linux | MS Technology | PHP | RMI | Web-Services | Servlets | Struts | UML
 

 
Facing Programming Problem?
Ask Questions?, Browse Latest Questions, Question-Answer Guidelines
Java
  JDO Tutorials
  EAI Articles
  Struts Tutorials
  Java Tutorials
  Java Certification
  Java Applet
Questions
Comments

How to create LineDraw In Java

                         

Introduction

This is a simple java program . In this section, you will learn how to create Line Drawing. This program  implements a line Drawing component. A java program explains the stroke line i.e. how to make thick and thin line. For this we have used  BasicStroke class. This object is passed to the setStroke() method.

Program Description:

First of all, define a class named, LineDraw in program for creating a java AWT Line Drawing component. This program uses the setStroke() method. The stroke describes the pen and brush. It is used for drawing the line. This controls all drawing line attribute. It is a suitable of all line drawing needs. 

BasicStroke(): This is a constructor component. A BasicStroke object is used for several different-different line drawing attributes. The BasicStroke() objects are immutable, So its can be safely cached and shared.

Here is the code of this Program:

import java.awt.*;
import java.awt.event.*;
import java.awt.geom.*;

public class LineDraw extends Frame{
  Line2D line1 = new Line2D.Double(00200200);
  Line2D line2 = new Line2D.Double(7080100200);
  Line2D line3 = new Line2D.Double(100150150,150);
  Stroke drawingStroke = new BasicStroke(2);
   public void paint(Graphics g) {
  Graphics2D graph = (Graphics2D)g;
    graph.setStroke(drawingStroke);
    graph.setPaint(Color.green);
    graph.draw(line1);
    graph.setPaint(Color.red);
    graph.draw(line2);
    graph.setPaint(Color.yellow);
    graph.draw(line3);

  }

  public static void main(String args[]) {
    Frame frame = new LineDraw();
    frame.addWindowListener(new WindowAdapter(){
      public void windowClosing(WindowEvent we){
        System.exit(0);
         }
      });
    frame.setSize(300250);
    frame.setVisible(true);
   }
}

Output of this program:

Download this program. 

                         

Leave your comment:

Name:

Email:

URL:

Title:

Comments:


Enter Code:

Audio Version
Reload Image
 

Note: Emails will not be visible or used in any way, and are not required. Please keep comments relevant. Any content deemed inappropriate or offensive may be edited and/or deleted.

No HTML code is allowed. Line breaks will be converted automatically. URLs will be auto-linked. Please use BBCode to format your text.

Add This Tutorial To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Latest Searches:
websphere portal
java ????¢Ñ????? ?????
xml database
load file
how to run ruby applic
Connection Pooling cod
actions forms
Websphere portal 6.0
application.xml
Read the content of te
struts2 acegi
xml stream
SIMPLE JAVA SOURSE COD
unicode
validate radio button
Tiles definition richf
Jframe Tutorials
struts tree
Update in jsp
vector in java
j2ee 5 tutorial eclips
Photoshop Photo Effect
ASP Ad Management CJ s
secure
java exit button liste
get column count colu
iBatis Stored Procedur
jsp MENU SELECT MAKES
Java Pass Value
java program to check
Flash 3D How to make c
spaces in string
string length using if
jar entry
using fromIndex to che
Add listener to compon
Expression Language
ASP EXAMPLE and 1=2
string to binary
Java date format
dynamic array value
tree
parseInt
Date comp[are in JSP
how to pass same varia
retrieve image url fro
log4j
calling one jsp p
jsp select
File Upload
GameStep
login session
download struts applic
jQuery To Hide the Div
definition of interfac
month format vb.net
Java Count words,reve
retrieve image from da
jboss connection pool
standered jstl jar to
object oriented progra
web
array element
Photoshop Text Effects
reload image
breadcrumbs in jsp
struts tld downloas
Threads
criteria restrictions
global variable in j
Diff bet MVC Model1 an
code for inserting val
how to override a vari
count
java bean insert conne
how to read txt file f
Create table and inser
Javascript Date and Ti
retriving multiple ima
GWT Servlet
Java String toLowerCase Example
Java String toCharArray Example
Java String substring Example
Java String indexOf Example
Java String startsWith Example
Java String hashCode Example
Java String matches Example
Java String length Example
Java String lastIndexOf Example
Java String isEmpty Example
Java String equalsIgnoreCase Example
Java String equals Example
Java String endsWith Example
Java String copyValueOf Example
Java String contentEquals Example
  EAI Articles
  Java Certification
Tell A Friend
Your Friend Name
Search Tutorials

 

 
 
Browse all Java Tutorials
Java JSP Struts Servlets Hibernate XML
Ajax JDBC EJB MySQL JavaScript JSF
Maven2 Tutorial JEE5 Tutorial Java Threading Tutorial Photoshop Tutorials Linux Technology
Technology Revolutions Eclipse Spring Tutorial Bioinformatics Tutorials Tools SQL
 

Home | JSP | EJB | JDBC | Java Servlets | WAP  | Free JSP Hosting  | Search Engine | News Archive | Jboss 3.0 tutorial | Free Linux CD's | Forum | Blogs

About Us | Advertising On RoseIndia.net  | Site Map

India News

Indian Software Development Company | iPhone Development Company in India | Java Training Delhi | Java Training at Noida |

Send your comments, Suggestions or Queries regarding this site at roseindia_net@yahoo.com.

Copyright © 2008. All rights reserved.