Welcome to Computer Programming

/**
*Text generated by Simple GUI Extension for BlueJ
*Update by Jeff Borland
*
*
**/

import javax.swing.UIManager.LookAndFeelInfo;
import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.KeyAdapter;
import java.awt.event.KeyEvent;
import java.awt.event.MouseAdapter;
import java.awt.event.MouseEvent;
import java.awt.event.MouseWheelEvent;
import java.awt.event.MouseWheelListener;
import javax.swing.border.Border;
import java.awt.image.*;
import java.util.Scanner; 
import javax.swing.*;


/**
*Description of project goes here 
*Author
*
*
**/

public class DrawDynamicRect extends BorlandBase {

	

	//Constructor 
	public void initialize(){

		setWidth(500);
		setHeight(400);
		setScreenLayout(null);
		setBackgroundColor(new Color(192,62,192));


		//adding components to contentPane panel
	}


	//If you would like something painted when program opens 
	public void paintScreen(Graphics g) 
	{ 

	} 


	//If the mouse button is clicked, this method is called 
	public void mouseClicked(MouseEvent e)
	{
		//int x=e.getX();
		//int y=e.getY();
		//Graphics g = getG();
		//DO YOUR DRAWING HERE
		//drawScreen();
	}

	//If the mouse button is pressed, this method is called 
	public void mousePressed(MouseEvent e)
	{
		//int x=e.getX();
		//int y=e.getY();
		//Graphics g = getG();
		//DO YOUR DRAWING HERE
		//drawScreen();
	}

	//If the mouse button is released, this method is called 
	public void mouseReleased(MouseEvent e)
	{
		//int x=e.getX();
		//int y=e.getY();
		//Graphics g = getG();
		//DO YOUR DRAWING HERE
		//drawScreen();
	}

	//If the mouse button is clicked, this method is called 
	public void mouseMoved(MouseEvent e)
	{
		//int x=e.getX();
		//int y=e.getY();
		//Graphics g = getG();
		//DO YOUR DRAWING HERE
		//drawScreen();
	}

	//If the mouse button is clicked, this method is called 
	public void mouseDragged(MouseEvent e)
	{
		//int x=e.getX();
		//int y=e.getY();
		//Graphics g = getG();
		//DO YOUR DRAWING HERE
		//drawScreen();
	}

	 public static void main(String[] args){
		try{  BorlandBase.main((BorlandBase)(new Object() { }.getClass().getEnclosingClass().newInstance()));  }
		catch (Exception e){e.printStackTrace();}
	}

}