| 
	M/F 2:30-3:20    | CS 1130: Transition to OO Programming Spring 2016 | 
| Main About: Overview Announcements Staff Consultants Calendar Materials: Texts DrJava Terminology Lectures: In-Class Web-Based VideoNote Assessment: Grading Assignments Labs Resources: CMS Piazza (link) Piazza (about) Java API Style Guide Academic Integrity | Module 2, Part 3Applications & AppletsIn this part, we show how you can create applications that run outside of DrJava, like software on your computer normally does. Contents1. ApplicationsReading: Reading: Gries/Gries, Sec. 16.1, pp. 435–436. 
Comments:
Make a Java program into an application by declaring a static procedure
 2. Creating a Stand-Alone ApplicationReading: Gries/Gries, Sec. 16.2, pp. 436–437. 
Comments:
This topic is not required in CS1130. You can make an  application even
easier to use by putting it in a jar file. Then, just double-click its 
icon to execute the application (i.e. to call its method  3. AppletsReading: Gries/Gries, Sec. 16.3, pp. 438–441; Sec. 16.4, pp. 441–444. 
Comments:
This topic is not required in CS1130. An applet is a subclass of Java API
class  
Sec. 16.3 tells you about inherited (from  |