TweetFollow Us on Twitter

May 93 - A CASE tool for OOA, OOD and OOP

ObjectModeler™
A CASE tool for OOA, OOD and OOP

Doug Rosenberg

ObjectModeler is an application which is useful for Object Oriented Analysis, Design, and Programming. There are 3 main areas of functionality within the program:

a GRAPHICS EDITOR which provides drawing palettes for-

  • Coad/Yourdon OOA diagrams
  • Rumbaugh OMT (Object Modeling Technique) diagrams
  • Booch Class diagrams
  • Booch Object diagrams

a DICTIONARY which provides-

  • a convenient place to capture additional detail beyond what is shown on the diagrams
  • a mechanism for sharing a model across a developmentteam on a fileserver
  • global change capability across a network
  • access controls and collision detection
  • integration with other ICONIX PowerTools™ modules

a TEXT EDITOR which provides-

  • linkage between source code and diagram elements
  • language templates on pull-down menus for
    • C++
    • Lisp
    • SQL
    • Pascal
    • PDL (ICONIX PowerPDL™ pseudocode language)

ObjectModeler can help to bring order and discipline to the often ad-hoc and chaotic process of developing O-O software without being overly rigid and stifling programmer creativity. Using ObjectModeler in conjunction with other ICONIX modules which support State Transition Diagrams, Module Architecture Diagrams and other techniques (e.g. PDL) makes it even more useful.

Object Oriented Analysis

The primary reason for not skipping the analysis phase of a software project is to ensure that the system under construction will properly meet the requirements of the customers or end-users. In other words, are we building the right system?

OOA methods tend to model the real world, often using notations that display classes or objects within the same symbol as their attributes (fields) and services or operations (methods). Other common themes across OOA methods are the kind-of and part-of relationships between classes.

These concepts lead to models of the objects, classes, and inheritance relationships in the problem domain which are readily understood by the end-users as well as the developers. These models are used to facilitate communication and lead to a common understanding of a system under development which is shared by all members of the development team as well as the end users.

ObjectModeler supports two methodologies which share these common themes; Coad/Yourdon OOA and Rumbaugh OMT. Each of these methodologies has its own set of strengths. Coad and Yourdon provide an easily understood notation for describing class hierarchies and address large system concerns with a 5-layer model which supports decomposition along Subject boundaries. Rumbaugh provides a rigorous approach based on Entity-Relationship modeling, extensive treatment of how to produce SQL from Class diagrams, and also includes State Machines and Data Flow diagrams as supplementary descriptions of object behavior and functionality; the ICONIX FastTask™ and FreeFlow™ modules support these representations.

Object Oriented Design

The primary reason for not skipping the design phase of a software project is to ensure that the system under construction is properly designed; that is, that the class hierarchy is appropriate, that the code is well modularized, and that the design will effectively meet performance constraints. In other words, are we building the system right?

ObjectModeler supports the Booch Object Oriented Design methodology. Booch is widely regarded as having the most comprehensive notation for OOD; his method consists of two primary kinds of diagrams, Class Diagrams and Object Diagrams. Booch also uses State Transition and Module Architecture diagrams in his OOD methodology; the ICONIX FastTask™ and AdaFlow™ modules support these representations.

Class Diagrams show the relationship between classes in a system, focusing on different kinds of inheritance and instantiation relationships. In Booch's words, they are used to answer the question "What classes exist and how are they related?"

Object Diagrams show objects and relationships between objects, focusing on visibility (how objects see each other) and message synchronization (how objects interact with each other). In Booch's words, they are used to answer the question "What mechanisms are used to regulate how objects collaborate?".

Booch proposes a set of templates for specifying details about classes, objects, messages and other design elements. These templates are available in ObjectModeler's Language Sensitive Editor as templates which can be picked off a menu and dropped into a text file that is linked to symbols on the diagrams.

name: Temp Control Display
documentation: <text>
visibility: <exported/private/imported>
cardinality: <0/1/n>
heirarchy:
    superclasses: Displays
    metaclass: <class_name>
generic parameters:  <list_of_parameters>
interface | implementation
(public/protected/private):
    uses: <list_of_class_names>
    fields: <list_of_field_declarations>
    operations: <list_of_operation_declarations>
finite state machine:  <state_transition_diagram>
concurrency: <sequential/blocking/active>
space complexity: <text>
persistence: <persistent/transitory>

Figure 6 - A Booch Class template. Booch defines an extensive set of templates which specify a variety of detailed information about system design elements.

ObjectModeler also supports the development of pseudocode (PDL) linked to symbols on diagrams. PDL may be used at any time during analysis or design when an algorithmic specification is called for. The ICONIX PowerPDL™ module may be used to collect PDL fragments created with ObjectModeler and format them into a design document, complete with a Table of Contents and several useful Cross References.

IF the steering wheel is rotated by more than 45 degrees THEN
    send a "turn complete" message to the turn indicator
ENDIF

Figure 7 - The ICONIX PowerPDL™ module can collect PDL fragments into complete documents with a Table of Contents and extensive Cross References.

Team Project Considerations ObjectModeler's dictionary provides a convenient place to store additional information about symbols on analysis or design diagrams. Items are automatically added to the dictionary as they are named, and can be accessed from the graphics editor by option-double-clicking on a named symbol. Each different type of symbol has its own set of attributes available on a pull-down menu.

ObjectModeler supports server-based development for project teams. Data is copied from the server into local RAM on program start-up; during editing operations, the server is polled periodically (at user-specified time intervals) and any changes are downloaded, minimizing network traffic while providing excellent performance and real-time updates. Each dictionary entry has a complete set of Access Privileges which control who gets to view, edit, rename, and delete it. Judicious use of these access controls allows a project team to provide an appropriate level of protection for design elements which are common within a subsystem or across subsystems.

The dictionary may be viewed as a scrolling list. The list can be scrolled or users can type the first few characters of an entry's name to access it. The dictionary provides several powerful functions which are useful in real-world project situations, including Global Rename and Delete (which affect all diagrams on the network), and cross referencing options to tell where entries are used and what they contain.

Object Oriented Programming

Once you have determined that you are building the right system and that you are designing the system right using ObjectModeler's OOA and OOD capabilities, it's time to implement, probably in some OOP language (perhaps C++).

ObjectModeler provides templates for a variety of languages (including C++, Lisp, and SQL) on pull-down menus. Code files may be accessed from diagrams by shift-double-clicking on a named symbol. The language templates may be used to eliminate a variety of syntax errors including keyword spelling and punctuation errors, and to provide a consistent code formatting style across an entire development team.

class TAudio_Display {
    public:
       TAudioDisplay(int volume);
       TAudioDisplay(int volume,
                     int bass,
                     int treble);  // overload
       virtual ~TAudioDisplay();
          
    protected:
       virtual void SetVolume();
       virtual void SetTone();
    
    private:
       int fVolume;
       int fBass;    
       int fTreble;
};

class RadioDisplay : TAudio_Display {
    public:
       TRadioDisplay(int volume
                     int frequency
                     int station);
       virtual ~TRadioDisplay();
          
    protected:
       virtual void SetFrequency();
       virtual void SetStation();
    
    private:
       int fFrequency;
       int fStation;
};

Figure 11 - ObjectModeler's Language Sensitive Editor is used to build source code directly linked to CASE model.

Coding may be carried through to completion within ObjectModeler or transitioned at any time to any back-end environment, at the user's option. All ObjectModeler code files are stored as flat ASCII text and may be transported to host platforms or other environments with ease. If Module Architecture Diagrams are used, an identical editor is available in the ICONIX AdaFlow module.

Summary

Requirements analysis is useful because it gives us an opportunity to determine whether we are in fact building the right system. Software design is useful because it gives us an opportunity to determine whether we are building the system right. While it is possible to achieve success without going through formal analysis and design activities, the chances of success are clearly maximized by taking the time to think about these issues. OOA and OOD methodologists have developed analysis and design methods which encapsulate useful experience gained across hundreds of O-O software projects. They have developed notations which represent O-O constructs and they have written books which ask the right questions about software under development.

ObjectModeler packages up three popular O-O methodologies into a tool which addresses team project concerns and multiple lifecycle phases (analysis, design, coding) in a reliable, cost-effective, and easy-to-use manner. ICONIX provides other tools which complement ObjectModeler with techniques like State Transition Diagrams, Module Architecture Diagrams, and PDL, in a synergistic manner. When conscientiously applied, the use of CASE methods and tools leads to successful projects; clean, well-designed programs delivered on-schedule and within budget.

For further information on ObjectModeler, other ICONIX PowerTools™ modules, or training in O-O methods, please contact us at:

ICONIX Software Engineering, Inc.
2800 28th Street, Suite 320
Santa Monica, CA 90405

Phone (310) 458-0092
FAX (310) 396-3454
Applelink: ICONIX
Internet: ICONIX@applelink.apple.com

 

Community Search:
MacTech Search:

Software Updates via MacUpdate

Latest Forum Discussions

See All

The secrets of Penacony might soon come...
Version 2.2 of Honkai: Star Rail is on the horizon and brings the culmination of the Penacony adventure after quite the escalation in the latest story quests. To help you through this new expansion is the introduction of two powerful new... | Read more »
The Legend of Heroes: Trails of Cold Ste...
I adore game series that have connecting lore and stories, which of course means the Legend of Heroes is very dear to me, Trails lore has been building for two decades. Excitedly, the next stage is upon us as Userjoy has announced the upcoming... | Read more »
Go from lowly lizard to wicked Wyvern in...
Do you like questing, and do you like dragons? If not then boy is this not the announcement for you, as Loongcheer Game has unveiled Quest Dragon: Idle Mobile Game. Yes, it is amazing Square Enix hasn’t sued them for copyright infringement, but... | Read more »
Aether Gazer unveils Chapter 16 of its m...
After a bit of maintenance, Aether Gazer has released Chapter 16 of its main storyline, titled Night Parade of the Beasts. This big update brings a new character, a special outfit, some special limited-time events, and, of course, an engaging... | Read more »
Challenge those pesky wyverns to a dance...
After recently having you do battle against your foes by wildly flailing Hello Kitty and friends at them, GungHo Online has whipped out another surprising collaboration for Puzzle & Dragons. It is now time to beat your opponents by cha-cha... | Read more »
Pack a magnifying glass and practice you...
Somehow it has already been a year since Torchlight: Infinite launched, and XD Games is celebrating by blending in what sounds like a truly fantastic new update. Fans of Cthulhu rejoice, as Whispering Mist brings some horror elements, and tests... | Read more »
Summon your guild and prepare for war in...
Netmarble is making some pretty big moves with their latest update for Seven Knights Idle Adventure, with a bunch of interesting additions. Two new heroes enter the battle, there are events and bosses abound, and perhaps most interesting, a huge... | Read more »
Make the passage of time your plaything...
While some of us are still waiting for a chance to get our hands on Ash Prime - yes, don’t remind me I could currently buy him this month I’m barely hanging on - Digital Extremes has announced its next anticipated Prime Form for Warframe. Starting... | Read more »
If you can find it and fit through the d...
The holy trinity of amazing company names have come together, to release their equally amazing and adorable mobile game, Hamster Inn. Published by HyperBeard Games, and co-developed by Mum Not Proud and Little Sasquatch Studios, it's time to... | Read more »
Amikin Survival opens for pre-orders on...
Join me on the wonderful trip down the inspiration rabbit hole; much as Palworld seemingly “borrowed” many aspects from the hit Pokemon franchise, it is time for the heavily armed animal survival to also spawn some illegitimate children as Helio... | Read more »

Price Scanner via MacPrices.net

Apple’s 13-inch M2 MacBook Airs return to rec...
Apple retailers have 13″ MacBook Airs with M2 CPUs in stock and on sale this weekend starting at only $849 in Space Gray, Silver, Starlight, and Midnight colors. These are the lowest prices currently... Read more
Best Buy is clearing out iPad Airs for up to...
In advance of next week’s probably release of new and updated iPad Airs, Best Buy has 10.9″ M1 WiFi iPad Airs on record-low sale prices for up to $200 off Apple’s MSRP, starting at $399. Sale prices... Read more
Every version of Apple Pencil is on sale toda...
Best Buy has all Apple Pencils on sale today for $79, ranging up to 39% off MSRP for some models. Sale prices for online orders only, in-store prices may vary. Order online and choose free shipping... Read more
Sunday Sale: Apple Studio Display with Standa...
Amazon has the standard-glass Apple Studio Display on sale for $300 off MSRP for a limited time. Shipping is free: – Studio Display (Standard glass): $1299.97 $300 off MSRP For the latest prices and... Read more
Apple is offering significant discounts on 16...
Apple has a full line of 16″ M3 Pro and M3 Max MacBook Pros available, Certified Refurbished, starting at $2119 and ranging up to $600 off MSRP. Each model features a new outer case, shipping is free... Read more
Apple HomePods on sale for $30-$50 off MSRP t...
Best Buy is offering a $30-$50 discount on Apple HomePods this weekend on their online store. The HomePod mini is on sale for $69.99, $30 off MSRP, while Best Buy has the full-size HomePod on sale... Read more
Limited-time sale: 13-inch M3 MacBook Airs fo...
Amazon has the base 13″ M3 MacBook Air (8GB/256GB) in stock and on sale for a limited time for $989 shipped. That’s $110 off MSRP, and it’s the lowest price we’ve seen so far for an M3-powered... Read more
13-inch M2 MacBook Airs in stock today at App...
Apple has 13″ M2 MacBook Airs available for only $849 today in their Certified Refurbished store. These are the cheapest M2-powered MacBooks for sale at Apple. Apple’s one-year warranty is included,... Read more
New today at Apple: Series 9 Watches availabl...
Apple is now offering Certified Refurbished Apple Watch Series 9 models on their online store for up to $80 off MSRP, starting at $339. Each Watch includes Apple’s standard one-year warranty, a new... Read more
The latest Apple iPhone deals from wireless c...
We’ve updated our iPhone Price Tracker with the latest carrier deals on Apple’s iPhone 15 family of smartphones as well as previous models including the iPhone 14, 13, 12, 11, and SE. Use our price... Read more

Jobs Board

Licensed Practical Nurse - Womens Imaging *A...
Licensed Practical Nurse - Womens Imaging Apple Hill - PRN Location: York Hospital, York, PA Schedule: PRN/Per Diem Sign-On Bonus Eligible Remote/Hybrid Regular Read more
DMR Technician - *Apple* /iOS Systems - Haml...
…relevant point-of-need technology self-help aids are available as appropriate. ** Apple Systems Administration** **:** Develops solutions for supporting, deploying, Read more
Operating Room Assistant - *Apple* Hill Sur...
Operating Room Assistant - Apple Hill Surgical Center - Day Location: WellSpan Health, York, PA Schedule: Full Time Sign-On Bonus Eligible Remote/Hybrid Regular Read more
Solutions Engineer - *Apple* - SHI (United...
**Job Summary** An Apple Solution Engineer's primary role is tosupport SHI customers in their efforts to select, deploy, and manage Apple operating systems and Read more
DMR Technician - *Apple* /iOS Systems - Haml...
…relevant point-of-need technology self-help aids are available as appropriate. ** Apple Systems Administration** **:** Develops solutions for supporting, deploying, Read more
All contents are Copyright 1984-2011 by Xplain Corporation. All rights reserved. Theme designed by Icreon.