COMP 212 Lab 1: StructureBuilder, Java Syntax, & DrJava 



This tutorial covers:

You will need to use these tools to facilitate the development of your programs.


StructureBuilder

StructureBuilder (SB) is a tool to create UML class diagrams and automatically generate Java "stub codes".  SB can also reverse engineer Java source/byte code to produce the corresponding UML diagrams.  StructureBuilder (SB) is available on Owlnet and the PCs.

In this lab, we will use SB to design a Pizza program.  Perform the following steps to create the UML diagrams shown below.  SB will generate code that reflects the class structure, but not the specific actions on any objects.   For that, after using SB, you'll edit the resulting stub code to add the rest of the code, filling in what each method should do.

  1. Start SB by clicking on the appropriate menu item in Windows.

     

  2. Prepare to create a completely new diagram:

     

    • In the File menu, choose Close All, to start your design from scratch.

    • In the Tools menu, choose Preferences, and set the Default Source Directory to your lab directory (today's lab, not the general lab directory).  This is where all the generated files will be saved. While you are in preferences, set the following as well:

      • Class Diagrams:
        • Icon Theme = UML
        • When Dragging Line = Move
      • Class Diagrams/Defaults
        • Display Variable and Method Types = checked
        • Show Method Parameters = checked
      • CodeGen
        • Generate Code Markers = unchecked
        • Starting Curly ({) On New Line = unchecked

    • In the File menu, select Save All. A file dialog will pop up, enter a file name called Pizza and save it IN THE SAME DIRECTORY AS THE Default Source Directory.

    • In the File menu, choose New/Class Diagram, or equivalently, click on the "New Class Diagram" button.  In the resulting dialog box, enter a name like "Pizza" for this diagram.  Also, check the "Display Variables and Method Types" and the "Show Method Parameters" boxes.  Then click on "OK".

      You should see a new "Pizza" tab.  Click on it.

  3. Now, make the diagram:

     

    1. In the File menu, choose New/Class, or equivalently, click on the "New Class" button.  In the left pane, a new class box should appear. In the right pane, some Java code to declare the new class should appear.  Both will use a default class name (e.g., Class_0).

      We need to edit this new class. Double-click on the class diagram, or equivalently, right-click and choose Properties, and a Properties Dialog should appear.

       

      • Select the Classes tab. Change the class name (in the Name textbox) to Circle.  Make sure the Directory text box displays the correct directory.
      • Select the Variables tab. Add the radius field by clicking on the New button Variables list box.  By default, you will get int newVariable. Select (highlight) the int text and type over double.  Select the newVariable text, and type over _radius.  Make sure the "private" radio button is selected.

       

    2. Repeat the same process to create a class called Rectangle with width and height fields of type double.

      You may want to keep the Properties dialog open. Note that you can switch classes and create new classes from its interface also.

    3. Create an interface called IShape.

      • In the File menu, choose New/Interface, or equivalently, click on the "New Interface" button, which is located immediately to the right of the New Class button.  In the left pane, a new class box should appear.   Rename the interface as IShape.
      • To add an (abstract) method for computing the area, select the Methods tab. In the Methods list box, click the New button. By default you will get the method void newMethodName.  Change this to double getArea.  Check the "abstract" check box and the "public" radio button.  NOTE: Though interface methods are by definition public and abstract, we want to explicitly declare them public and abstract in order for SB to display them correctly  The UML class diagram for IShape should display the getArea() method in italic.  In UML, all abstract methods are italicized.

       

    4. Make Circle and Rectangle implement IShape by dragging the inheritance arrow (the middle one) from each subclass to IShape. You may need to drag the classes around for a more readable placement.

    5. Generate method stubs for Circle and Rectangle by right-clicking each inheritance arrow, and selecting Generate Method Stubs.  Circle and Rectangle should now each have a default stub code for the getArea() method.

    6. Add a class called Pizza.

      • Add a price field of type double. While that new field is selected, check the Create Get Routine box.  That creates a method get_price returning that field.  Rename get_price to getPrice.

       

    7. To make Pizza reference an IShape, select class Pizza.  In the lower far-right corner of the Pizza class diagram is an "association" symbol. Click on it and drag it to the IShape class diagram.  

      • A field (i.e. variable) called iShape is automatically generated.  Rename the field to _shape.

      • Create a Get Routine for _shape.  Rename get_shape to getShape.

      • Double-click on the link arrow, and check the aggregation check box. Aggregation simply means "has-a".  You can add the text "has-a" to the link label and "_shape" to the Role A text box.  These texts are like comments and have no effect on the code.

    8. Constructors are special pieces of code used to initialize an instance of a class when it comes into existence.

      • To add a constructor for Pizza, select the Methods tab of its Properties, and select New/Constructor. In the Parameters area, add two new parameters: double price and IShape shape.
      • Add a Circle constructor with parameter double radius.
      • Add a Rectangle constructor with parameters double width and double height.
      Of course, you can also create constructors when you originally create classes.
    9. Add a class called PizzaDeal with two methods.
      • double deal(Pizza p)
      • boolean betterDeal(Pizza p1, Pizza p2)

      To add a new method to a class:

      • select the Methods tab in the Properties Dialog.
      • In the Methods list box, select New/User Method. By default you will get the method void newMethodName
      • Change the return type and the method name accordingly.

      To add a parameter to a method:

      • select the desired method.

      • in the Parameters tab, click the New button.  A default int newParam is created.  Rename the type and the name accordingly.

       

    10. Add a class callled PizzaClient which will make use of Pizza, PizzaDeal, Circle, and Rectangle to figure out the better deal. This class should have a special method with signature

           public static void main (String[] args)
                
    11. Add "dependencies" between different classes by dragging the dependency arrow icon (just left of the association icon) to another class. In this example, PizzaClient "depends" on Pizza, PizzaDeal, Circle, and Rectangle. You can enter a label for a dependency arrow by double-clicking on it and, filling out the pop-up dialog box.  Dependency arrows have no effect on code generation.

    12. Feel free to make modifications on your diagram. You can drag your class diagrams around and bend the arrows in many different ways. You just have to experiment with the tool.

    13. In the File menu, select Save All, and use the file name Pizza. This should create the files PizzaClient.java, PizzaDeal.java, Pizza.java, IShape.java, Circle.java, and Rectangle.java in the specified directory.

  4. Now define what this program actually does, i.e., define the methods described by your diagram.  Use DrJava (discussed below) to add the methods to the corresponding class .java file.  See lecture 3 class notes for the code you need.  Remember that the IShape getArea method is abstract and so has no code body.  Make sure you add comments to the code as shown in the sample code.  The comments are written in "javadoc" style.  You will learn more about javadoc in next week's lab.

  5. You should be able to generate javadoc and UML diagrams for your code in one click of a button: go to the menu Tools/Generate Documentation; select private access type to generate javadoc for all fields and methods, select the class diagrams you want to javadoc, and click the Generate button!  You can submit the generated UML diagrams and javadoc html files as the official javadoc documentation of your work.  You will not need to export the diagrams to any files at all.

More information on running StructureBuilder can be found here.

 


DrJava

DrJava is a user-friendly integrated development environment (IDE) developed by the Rice Programming Language Team  (PLT) group. DrJava provides a way to edit and save java code with key words highlighting, curly brace matching, and an interactive environment to manipulate objects and test code without having to write the main method.  DrJava can be downloaded freely from drjava.org.

Running DrJava

Click on the appropriate menu item in Windows to start DrJava. You should see a GUI development environment that looks very similar to DrScheme.  Here are the functions of the four subwindows in the GUI.

The top half of the GUI constitutes the Definitions window.  You type in all the class definitions here.  After you type in some code, you need to click on the save button before you can compile your code.  All the classes in the Definitions window will be saved in a single file.  There should only be one public class in the Definitions window, and the saved file should have the same name as that of the public class with the extension .java.

The bottom half of the GUI comprises three tabbed windows.

  1. Interactions window: this is where you can type in any valid Java statement.  Usually, you would type in code to instantiate objects  of classes defined in the Definitions window, and call their methods to check whether or not they perform correctly.  Typing a valid Java expression terminated with a semi-colon and then pressing the Return (Enter) key, will cause DrJava to evaluate the expression but NOT printing the result.  If you want DrJava to print the value of the result in the Interactions window, you should press Return without terminating the expression with a semi-colon.  There is a menu item to reset (i.e. clear) the Interactions window.   Another way to clear the Interactions window is to force a re-compile by editing the Definitions window.
  2. Compiler Output window: Every time you compile your code, DrJava will display all compile error messages here.  Clicking on an error message will highlight the line where the error is suspected to take place in the Definitions window.  If there is no compile error, DrJava will declare success in this window.
  3. Console Output window: All console output will be printed in this window.

Java Syntax

Lecture note #3 contains a syntax summary of the most common Java constructs.

Download the following Java file: TestFruit.java.  Open it in DrJava.  Compile and fix all errors.