JotAzul Docs(Help !! My english sucks !! Do you want to contribute ?? Go to project page !!) The JotAzul is a free Object Oriented Java IDE created to help teachers
and newbies in the POO World. This doc shows brief instructions on using
the IDE. 1- Download and InstallThe most recent version can be found at http://jotazul.sourceforge.net/download.htm.
2- JotAzul environmentThe JotAzul main window has 2 parts. In left you find the project visualizer, where you can see and edit the project name and the class list. 2.1 - Creating classesTo create a new class go to menu Project -> New Class. 2.2 - Class EditorThe class editor looks like this: - Attribute Editor: 2.3 - Class DiagramAfter compiling your classes, you can visualize a class
diagram generated by JotAzul. 2.4 - Object EditorYou can manipulate objects created by the Class Diagram in the Object
Editor view.
3- Compiling classes:After to create your classes, you must compile them (Project ->
Compile).
4- Operation on classes and instances:4.1 - Creating instancesWhen you need to create a new object, otAzul shows the following window: Choose an identifier and a constructor to create the object and click in OK. If the chosen constructor receives parameters, you need to pass the parameter values 4.2 - Setting attribute values and passing parameters to methodsWhen modifying an attribute or passing parameters to a method, JotAzul will show dialogs get input data. If the input value is a primite type or String, a simple dialog will ask for a compatible value. If the input value is an object (except String), JotAzul will ask if you want to pass a created object or a new instance. You can create new objects to parameters using polimorfism. If you choose to create a new instance, the instance creation window is shown.4.3 - Invoking methodsTo invoke a method, you must choose a options in the available methods
list for your object/class, and click in OK:
5 - Tools:5.1 - Creating object from Java APIIn this resource, you it can create instances of classes from the Java API.An interesting example is showed here: Click in menu (Classes->New Extern Instance). A dialog to select a Java API class will be shown: ![]() - Select the class Frame from package java.awt - Select the constructor without parameters and click in OK. Observe a Frame Object and others agregated objects was added to the Object Editor! - Select the Frame object and right-click to call a method. - Selects "Show inherited methods" to show to all the methods - Click in the heading of the list ('methods') to sort methods by name or class - Select method show() and click in OK Look at the new java.awt.Frame window showing in your screen ! You can play with it invoking others methods in the Frame object 5.2 - Recording InteractionsIn the menu Tools -> Record Interactions, you can generate a class with a main method that contains Java code with all the interactions maked with objects and classes in Class Diagram or Object Editor. Try to activate the recording of interactions and folow the of section 5.1. Click in menu Tools -> View operations souce code to visualize a class with the record of the interactions with objects. You can save it for external use.5.3 - Evaluating expressionsIn menu Tools -> Evaluate Java Expression. You can type any Java expression. This expression must return any value (primitive or object). You can use your created objects in the expression. Try to evaluate the expression new java.util.Date(). You will get a object with current system date as return !
6- Settings:6.1 - LanguageYou can change JotAzul language clicking File -> Settings. The files in jotazul-text directory can be used to criate translation to JotAzul. (I know !! My english sucks !! Do you want to contribute ?? Go to project page !!)
|