Comments
Richard Davies wrote: The UK has a good crop of technology pioneers in cloud computing - for example ElasticHosts, FlexiScale, Flexiant, OnApp - and also some strong government initiatives such as G-Cloud. We will have to see whether this kind of technical leadership converts into swift mass-market adoption or not.
Cloud Expo on Google News

SYS-CON.TV
Cloud Expo & Virtualization 2009 East
PLATINUM SPONSORS:
IBM
Smarter Business Solutions Through Dynamic Infrastructure
IBM
Smarter Insights: How the CIO Becomes a Hero Again
Microsoft
Windows Azure
GOLD SPONSORS:
Appsense
Why VDI?
CA
Maximizing the Business Value of Virtualization in Enterprise and Cloud Computing Environments
ExactTarget
Messaging in the Cloud - Email, SMS and Voice
Freedom OSS
Stairway to the Cloud
Sun
Sun's Incubation Platform: Helping Startups Serve the Enterprise
POWER PANELS:
Cloud Computing & Enterprise IT: Cost & Operational Benefits
How and Why is a Flexible IT Infrastructure the Key To the Future?
Click For 2008 West
Event Webcasts
Roaster Release 3
Roaster Release 3

Roaster Release 3 is the latest version of the Java Macintosh development environment from Roaster Technologies, a spin-off of long-time Macintosh developer Natural Intelligence. As an early market leader with a year of interim developer releases, Roaster's Release 3 is a solid, fully-featured, professional-quality development environment that integrates a variety of tools including a project manager, a syntax-sensitive editor, a class source browser, a class tree viewer, an HTML documentation extractor, a compiler and a source-level debugger. Release 3 also includes a beta preview of a just-in-time compilation runtime system. While Release 3 only supports JDK 1.0.2, a free JDK 1.1 upgrade will be available in August to registered Roaster Release 3 users. Roaster includes 90 days of free technical support from a very responsive and knowledgeable support organization.

Following the directions in the Read-Me file, you just drag a few folders onto your hard drive and restart. Though I generally prefer using an installer program, the manual installation is quick and easy. Roaster is bundled with so much extra software and example code that you will likely be referring directly to the CD-ROM later anyway. The user interface to Roaster is clean enough to allow a developer familiar with other project-based development environments to start working immediately. Documentation on Roaster is supplied in Adobe Acrobat 3.0 format (readers for 68K and PowerPC are included). The initial CD-ROM pressing included incomplete Release 3 documentation backed by a full set of Release 2 documentation that provides adequate coverage for most of the tools. The complete Release 3 documentation is now available for download from the Roaster site.

Getting Started
Roaster supports 68K and PowerPC Macs; in fact, Roaster works fine on older 68030 Macs that JavaSoft's MacJDK does not support. Launching the Roaster application brings up the main application menu that controls the project, editor, debugger and browser windows. When you create a new project file, a project wizard asks you some basic questions about the project. Based on whether you are creating an applet or a standalone application, the wizard creates the correct type of project file and a skeleton source file. You can open multiple project windows; each project can contain multiple Java packages and, of course, each package can have multiple source files. Using a popup menu in the project window, you can navigate directly to a method within a source file; select a method name and the editor opens the source file and goes to the selected method. These navigation facilities from the project window are very useful for large projects. If you put .class files in the project, you can view the Java byte code in the editor. You can also invoke the editor using the multi-file, project-wide search capabilities to find either method or class definitions. Roaster does not include a source code control system.

Editor
Once in the editor, you find a variety of functions to ease the creation of your code. At the top of the editor window is a user-configured toolbar that can contain a variety of tools - a method tag tool, a macro tool, clipboard tools, search tools, formatting tools, class/method creation tools and HTML entry tools. You select from a total of 25 different tools to place in the toolbar and each toolbar tool can have a hot-key. For example, you can use multiple copies of the named-clipboard tool to save a method declaration template, a standard copyright statement and other often used text. Typing the hot-key assigned to the clipboard inserts the text into your source file. To quickly navigate within a source file, you use the "method" tool to instantly go to any method in the current source file; the editor automatically creates tags for each method as you enter the method declaration.

The editor window is dual-paned to allow the simultaneous display of two sections of a given file. The editor includes user-controlled syntax styling, allowing for keywords and syntax constructs to be displayed in a different color or text style. Roaster knows the syntax of Java, C, C++, SQL and HTML. While there is extensive user control over the syntax styling, there is no user control over the automatic formatting tool. You either accept the defined bracketing and indenting format or you do all of your formatting manually. While the standard formatting style is generally acceptable, I found the lack of user control over formatting standards the biggest drawback in an otherwise excellent editor.

Browsers
Often a class browser is better for viewing source code than a regular text editor. Integrated into the environment is both a class tree browser (the "class tree" item in the New submenu) and a class source browser (the "browser" item in the New submenu). Though somewhat similar, the two browsers provide complementary views of your source code. The class tree browser provides a graphical view of the inheritance relationships of your classes; this is a big help in understanding any large object-oriented project. The browser also uses a dual-paned window. Select a class in the tree display in the bottom pane and a summary of class information -the names of methods, instance variables and implements classes -is shown in the top pane. Using the class tree viewer, you can quickly navigate through the classes in your project and gain a good understanding of the relationships between classes.

While the class tree browser shows relationships, the class browser provides a way to navigate through the source code of your project one class at a time. The display is divided into two panes. The top pane is used for navigation and shows the packages defined for your project, the classes in a selected package and the methods and variables defined in a selected class. Select a package in your project and a class in that package and the lower pane of the class browser becomes an editor window, allowing full source editing using all the tools of the editor. Select a method or variable name and the editor goes to that position in the source file. With a large screen display, you can do all of your editing from the browser window. Both class browsers share a common legend for indicating the attributes, such as protected or static, of methods and variables.

Compiler and Runtime
Once you have written your source code, you can create Java byte code stored in either .class files or in a ZIP archive. Release 3 simplifies the task of creating cross-platform ZIP files. After compiling your code (or using the automatic Make facility), you can test your applet using either the Applet Viewer or by invoking a predefined AppleScript to launch your favorite Java-enabled Web browser. Roaster provides extensive support for AppleScript and comes with over 20 scripts to perform a variety of functions. Want to test with a different Java-enabled browser? It is a simple change to the script using System 7's AppleScript editor.

Applications run within the Roaster Runner environment. Release 3 significantly improves the support for running and debugging standalone applications and also includes support for the Java Native code Interface (JNI). JNI provides a standard mechanism to combine native code (such as code written in C) and Java code, though the result will obviously be platform-specific. With Roaster you can easily create double-clickable Java applications; a good example of this facility is the Netscape IFC creation tool bundled with the CD-ROM.

Debugger
Roaster includes a comprehensive source code debugger that lets you closely monitor the operation of your code. The basic debugger window is dual-paned and functions like the source browser; package, class and member information are displayed in the top pane and source code is displayed in the bottom pane. The debugger also provides several informational display windows, including ones that list the currently loaded classes and active breakpoints, and display the local variables, current call chain, thread status and runtime stack. The debugger provides the usual set of controls, including start, stop, kill, step-over, step-in and step-out. Hitting a breakpoint brings up a display of the corresponding source code. If source code is not available, you can also debug byte code.

Documentation Tools
Documentation on the JDK 1.0.2 API is supplied in QuickView format along with a QuickView viewer. Not only does QuickView have a smaller program memory requirement than a Web browser or HTML viewer, the information loads much faster than when stored in HTML format. QuickView also allows searching of the API documentation and the addition of user notes. A unique feature of Roaster's JDK API help system is its ability to display all of the methods inherited from superclasses. Gone is the manual backtracking to determine if a class inherits certain behavior from a superclass. Support for the automatic creation of HTML documentation from source code files based on the javadoc convention is provided; compiling documentation is as easy as selecting a main application menu item.

Bundled Software
While Roaster is a good value for just its development functions, Release 3 has gone beyond bundling "evaluation" versions of software, essentially advertisements, and includes fully licensed software that is of significant value to developers. Release 3 includes Object Design's ObjectStore PSE object database, OpenLink Software's JDBC to ODBC bridge package, Netscape's Internet Foundation Classes, OpenSpace's Java Generic Library and Microline Software's user interface component toolkit. Roaster's support for ObjectStore PSE is excellent. The back-end compiler that produces the persistence information needed by ObjectStore is supplied as a Roaster compiler plug-in. Over 300 example source files round out the bundled software.

User Interface Tools
Release 3 also includes some tools to support the creation of user interfaces. You can use the Roaster Interface Brewer, a SuperCard stack, to visually create user interface programs using AWT elements. The Interface Brewer is not yet complete in Release 3, but does provide some useful functions. Included with the Netscape Internet Foundation Classes is the Netscape IFC Constructor. IFC Constructor is a Java application that creates user interface programs using IFC elements; the inclusion of IFC in Release 3 is significant because of the recent merger of IFC with AWT to form the new Java Foundation Classes.

Conclusion
Roaster Release 3 is perfect for professional Java development. Roaster's tools are comprehensive and well integrated and the many extras, such as the ObjectStore and JDBC packages, are invaluable. At $49, Roaster is an incredible value and priced within reach of even occasional applet writers. Roaster Release 3 sets a new price/performance point for Java development environments.

About Jim Mathis
Jim Mathis is a freelance Java and JavaScript consultant and a communications systems architect. Jim is a contributing writer to Java Developer's Journal and has been active in the Internet community from its very beginnings and wrote one of the first implementations of TCP/IP.

In order to post a comment you need to be registered and logged in.

Register | Sign-in

Reader Feedback: Page 1 of 1

Latest Cloud Developer Stories
Rackspace Hosting, the service leader in cloud computing, on Thursday announced its acquisition of SharePoint911, an industry leader in SharePoint consulting, training, and "JumpStart" services within SharePoint. The unification of both companies provides capabilities to deliver ...
With Cloud Expo 2012 New York (10th Cloud Expo) now under four months away, what better time to start introducing you in greater detail to the distinguished individuals in our incredible Speaker Faculty for the technical and strategy sessions at the conference... We have techn...
Nimble, the social CRM platform has announced the launch of Nimble 2.0, billed as the “most social” CRM platform on the market today. Nimble was designed entirely with social CRM in mind and is the first social business platform that empowers companies with the ability to get clo...
2011 was a year of rapid adoption for public and private cloud services. Instant and on-demand server provisioning was the driving force behind the massive growth. On top, cloud server templates and script automation simplified application installation for simple and pre-defined ...
"Having been in the IT field for many years, I believe the cloud computing chapter in the industry is an exciting one and I am proud to be a part of it," said National Reconaissance Office (NRO) Chief Information Officer Jill T. Singer Tuesday, as it was announced that she was on...
Subscribe to the World's Most Powerful Newsletters
Subscribe to Our Rss Feeds & Get Your SYS-CON News Live!
Click to Add our RSS Feeds to the Service of Your Choice:
Google Reader or Homepage Add to My Yahoo! Subscribe with Bloglines Subscribe in NewsGator Online
myFeedster Add to My AOL Subscribe in Rojo Add 'Hugg' to Newsburst from CNET News.com Kinja Digest View Additional SYS-CON Feeds
Publish Your Article! Please send it to editorial(at)sys-con.com!

Advertise on this site! Contact advertising(at)sys-con.com! 201 802-3021

SYS-CON Featured Whitepapers
ADS BY GOOGLE

Breaking Cloud Computing News
The future of U.S. optoelectronics manufacturing will be spotlighted during a one-day industry-centr...