BlueJ: a very quick introduction

Slides:



Advertisements
Similar presentations
Introduction to Eclipse. Start Eclipse Click and then click Eclipse from the menu: Or open a shell and type eclipse after the prompt.
Advertisements

Create an APA-style header using Microsoft Word 2007 quick tips for creating an APA template Trinity Writing Center (2011)
 Points  Weighted Percentages  Click on the preferred method above for step-by-step directions.
BlueJ: a very quick introduction. BlueJ BlueJ is an IDE (Interactive Development Environment). It includes –an editor, which you use to write your programs.
A Simple Applet. Applets and applications An applet is a Java program that runs on a web page –Applets can be run from: Internet Explorer Netscape Navigator.
13-Jul-15 BlueJ: A Very Quick Introduction. BlueJ BlueJ is an IDE (Integrated Development Environment). It includes an editor, which you use to write.
Methods: a first introduction Two ways to make tea: 1: boil water; put teabag into cup;... etc : tell your younger brother: makeTea(1 milk, 0 sugar);
Marlene Galea.  The JDK (Java Development Kit)  An IDE (Integrated Development Environment) ◦ Different IDEs include:  JCreator  NetBeans  BlueJ.
Editing Java programs with the BlueJ IDE. Working environments to develop (= write) programs There are 2 ways to develop (write) computer programs: 1.Using.
Java Programming, 3e Concepts and Techniques Chapter 2 Creating a Java Application and Applet.
From BlueJ to NetBeans SWC 2.semester.
Click your mouse for next slide Flash – Introduction and Startup Many times on websites you will see animations of various sorts Many of these are created.
Introduction to Visual Basic. Quick Links Windows Application Programming Event-Driven Application Becoming familiar with VB Control Objects Saving and.
Introduction to Programming with Java. Overview What are the tools we are using – What is Java? This is the language that you use to write your program.
Mail merge I: Use mail merge for mass mailings Perform a complete mail merge Now you’ll walk through the process of performing a mail merge by using the.
ACM/JETT Workshop - August 4-5, Guidelines For Using BlueJ.
Ellsworth Publishing Company (888) Keyboard Short Course Part 2: Student Side (Screen-Based Version—No Textbook Needed) 20-minute, Self-Paced,
POS 406 Java Technology And Beginning Java Code
Running CATIA on Windows XP & Vista Dual Boot System 1 Many of us have ?dual boot? OS PC, most likely Windows XP & Vista in dual boot. If you just installed.
4th Grade Book Publishing Project: Animal ABC Book
Variables and Functions. Open your Encoder program Let’s begin by opening the “Labyrinth Auto Straight” code. Save this file as Labyrinth with variables.
Agenda For Feb PowerPoint Presentation (Introduction to Java Methods) 2.Finish Unit 2 exercises on page 13 (due by the end of the class today). 4.
Unit 1: Java and Eclipse The Eclipse Development Environment.
EIE375 BlueJ: Getting Started Dr Lawrence Cheung.
Progress Report Directions for Aries in 8 Easy Steps Step 1- Log into your Aries grade book.
Lesson 10 - Mail Merge and Reviewing Documents Advanced Microsoft Word.
This is what you need to do! Open up a browser of your choice. Navigate to student webmail or go to The.
29-Nov-15 Getting Ready for Java. 2 What is Java? Java is a programming language: a language that you can learn to write, and the computer can be made.
Basic & Advanced Reporting in TIMSNT ** Part Three **
22-July-2002cse142-13B-Development © 2002 University of Washington1 Development Tools CSE 142, Summer 2002 Computer Programming 1
Export/Import of TurningPoint Session Files II: Exporting.tpz (Session) Files to csv Files Ready for Import into D2L Tanya Joosten and Gerald Bergtrom.
Compiling and running Java programs with BlueJ. Successfully compiled files program files in BlueJ You can tell from the shade of a program icon in BlueJ.
1 Class 1 Lecture Topic Concepts, Definitions and Examples.
Copy of the from the secure website - click on the AccoridaLife.zip link.
Fixing Photos Part 2 – Color Adjustments Your name here __________________ Period ____ 1.Download the practice images ZIP file. 2.Complete the photo improvement.
Fixing Photos Part 1 – Lighting Adjustments Your name here __________________ Period ____ 1.Download the practice images ZIP file. 2.Complete the photo.
Creating a Google Doc A Quick Photo Tutorial. Sign in to Google Docs If you don’t already have an account, sign up for one, it’s FREE.
Adding and Eating Worms Mrs. C. Furman August 23, 2010.
Groups of cells labeled with letters that go up and down (vertical)
Netbeans QuickStart. Creating a project File->New Project –For now you want General->Java Application –Then fill in the project details.
Perform a complete mail merge Lesson 14 By the end of this lesson you will be able to complete the following: Use the Mail Merge Wizard to perform a basic.
Technology Skills Benchmarks Strand 2. Use of Productivity Software Benchmark 2a. Insert Word Art Sacred Heart University Isabelle Farrington College of.
n It all Begins Here: Create, Name, Save n Organizing the content: Opening Files, Adding a Background, Text in Your Presentation, Adding the Art, Ordering.
CST 1101 Problem Solving Using Computers
Practical Office 2007 Chapter 10
Using a template to create a document
Getting Started with R.
Document Generation QRG
An introduction to programming Created by Dr. Randy Pausch
Eclipse Navigation & Usage.
Using a set-up file to read ASCII data into SPSS
Steps to respect : First create a folder where yo will save all the images Draw the first image (basic image) or open it Save your first image in the folder.
How to edit bios logo with Phoenix Bios editor
Illustrator Test 1 Kamden Schroeder.
Adding Assignments and Learning Units to Your TSS Course
TRANSLATORS AND IDEs Key Revision Points.
String Output ICS 111: Introduction to Computer Science I
Steps in Writing an Essay
Steps in Writing an Essay
Steps in Writing an Essay
Word 2007 Basics TCC July 2011.
“Hello” slide Hello. Here’s what you need to know about your new Office: Access your files and personal settings, and applications from virtually anywhere.
Using a Debugger 1-Jan-19.
“Hello” slide Hello. Here’s what you need to know about your new Office: Access your files and personal settings from virtually anywhere Save your documents.
“Hello” slide Hello. Here’s what you need to know about your new Office: Access your files and personal settings from virtually anywhere Save your documents.
Macro.
Java Programming with BlueJ Objectives
BlueJ: a very quick introduction
Running a Java Program using Blue Jay.
Review of Previous Lesson
Presentation transcript:

BlueJ: a very quick introduction 22-Feb-19

BlueJ BlueJ is an IDE (Interactive Development Environment). It includes an editor, which you use to write your programs a debugger, to help you find your mistakes a viewer, to see the parts of your program an easy way to run Java programs an easy way to view documentation

Open BlueJ, choose New Project

Name the project, click Create

Create and name a new Class or Applet The name of the class should begin with a capital letter

Double-click the new class to edit it The stripes show that the class "Drawing" is not compiled (ready to run)

Edit your class, then Compile it BlueJ starts you with a simple class or a simple applet. You can modify what BlueJ gives you, or just replace it with your own program.

If it's an applet: Right-click the class and choose Run Applet

If applet: choose how to run it, and what size it should be

Here's the running applet!

If application: right-click and choose void main(args)

Application: Just click Ok

Application results

Final notes You don't have to Save your work—BlueJ does that automatically for you when you compile If you quit BlueJ and come back later, use Open Project to continue where you left off This quick introduction does not replace working through the tutorial!

Your Assignment Step through the BlueJ tutorial and note any differences between the documentation and the actual program (hand in a list) Modify this applet to draw a picture of your own Use 10 or more drawing commands You will not be graded on artistic merit

The End