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

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 »
PUBG Mobile teams up with global phenome...
Since launching in 2019, SpyxFamily has exploded to damn near catastrophic popularity, so it was only a matter of time before a mobile game snapped up a collaboration. Enter PUBG Mobile. Until May 12th, players will be able to collect a host of... | Read more »
Embark into the frozen tundra of certain...
Chucklefish, developers of hit action-adventure sandbox game Starbound and owner of one of the cutest logos in gaming, has released their roguelike deck-builder Wildfrost. Created alongside developers Gaziter and Deadpan Games, Wildfrost will... | Read more »
MoreFun Studios has announced Season 4,...
Tension has escalated in the ever-volatile world of Arena Breakout, as your old pal Randall Fisher and bosses Fred and Perrero continue to lob insults and explosives at each other, bringing us to a new phase of warfare. Season 4, Into The Fog of... | Read more »
Top Mobile Game Discounts
Every day, we pick out a curated list of the best mobile discounts on the App Store and post them here. This list won't be comprehensive, but it every game on it is recommended. Feel free to check out the coverage we did on them in the links below... | Read more »
Marvel Future Fight celebrates nine year...
Announced alongside an advertising image I can only assume was aimed squarely at myself with the prominent Deadpool and Odin featured on it, Netmarble has revealed their celebrations for the 9th anniversary of Marvel Future Fight. The Countdown... | Read more »
HoYoFair 2024 prepares to showcase over...
To say Genshin Impact took the world by storm when it was released would be an understatement. However, I think the most surprising part of the launch was just how much further it went than gaming. There have been concerts, art shows, massive... | Read more »
Explore some of BBCs' most iconic s...
Despite your personal opinion on the BBC at a managerial level, it is undeniable that it has overseen some fantastic British shows in the past, and now thanks to a partnership with Roblox, players will be able to interact with some of these... | Read more »

Price Scanner via MacPrices.net

You can save $300-$480 on a 14-inch M3 Pro/Ma...
Apple has 14″ M3 Pro and M3 Max MacBook Pros in stock today and available, Certified Refurbished, starting at $1699 and ranging up to $480 off MSRP. Each model features a new outer case, shipping is... Read more
24-inch M1 iMacs available at Apple starting...
Apple has clearance M1 iMacs available in their Certified Refurbished store starting at $1049 and ranging up to $300 off original MSRP. Each iMac is in like-new condition and comes with Apple’s... Read more
Walmart continues to offer $699 13-inch M1 Ma...
Walmart continues to offer new Apple 13″ M1 MacBook Airs (8GB RAM, 256GB SSD) online for $699, $300 off original MSRP, in Space Gray, Silver, and Gold colors. These are new MacBook for sale by... Read more
B&H has 13-inch M2 MacBook Airs with 16GB...
B&H Photo has 13″ MacBook Airs with M2 CPUs, 16GB of memory, and 256GB of storage in stock and on sale for $1099, $100 off Apple’s MSRP for this configuration. Free 1-2 day delivery is available... Read more
14-inch M3 MacBook Pro with 16GB of RAM avail...
Apple has the 14″ M3 MacBook Pro with 16GB of RAM and 1TB of storage, Certified Refurbished, available for $300 off MSRP. Each MacBook Pro features a new outer case, shipping is free, and an Apple 1-... Read more
Apple M2 Mac minis on sale for up to $150 off...
Amazon has Apple’s M2-powered Mac minis in stock and on sale for $100-$150 off MSRP, each including free delivery: – Mac mini M2/256GB SSD: $499, save $100 – Mac mini M2/512GB SSD: $699, save $100 –... Read more
Amazon is offering a $200 discount on 14-inch...
Amazon has 14-inch M3 MacBook Pros in stock and on sale for $200 off MSRP. Shipping is free. Note that Amazon’s stock tends to come and go: – 14″ M3 MacBook Pro (8GB RAM/512GB SSD): $1399.99, $200... Read more
Sunday Sale: 13-inch M3 MacBook Air for $999,...
Several Apple retailers have the new 13″ MacBook Air with an M3 CPU in stock and on sale today for only $999 in Midnight. These are the lowest prices currently available for new 13″ M3 MacBook Airs... Read more
Multiple Apple retailers are offering 13-inch...
Several 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... Read more
Roundup of Verizon’s April Apple iPhone Promo...
Verizon is offering a number of iPhone deals for the month of April. Switch, and open a new of service, and you can qualify for a free iPhone 15 or heavy monthly discounts on other models: – 128GB... Read more

Jobs Board

Relationship Banker - *Apple* Valley Financ...
Relationship Banker - Apple Valley Financial Center APPLE VALLEY, Minnesota **Job Description:** At Bank of America, we are guided by a common purpose to help Read more
IN6728 Optometrist- *Apple* Valley, CA- Tar...
Date: Apr 9, 2024 Brand: Target Optical Location: Apple Valley, CA, US, 92308 **Requisition ID:** 824398 At Target Optical, we help people see and look great - and Read more
Medical Assistant - Orthopedics *Apple* Hil...
Medical Assistant - Orthopedics Apple Hill York Location: WellSpan Medical Group, York, PA Schedule: Full Time Sign-On Bonus Eligible Remote/Hybrid Regular Apply Now Read more
*Apple* Systems Administrator - JAMF - Activ...
…**Public Trust/Other Required:** None **Job Family:** Systems Administration **Skills:** Apple Platforms,Computer Servers,Jamf Pro **Experience:** 3 + years of Read more
Liquor Stock Clerk - S. *Apple* St. - Idaho...
Liquor Stock Clerk - S. Apple St. Boise Posting Begin Date: 2023/10/10 Posting End Date: 2024/10/14 Category: Retail Sub Category: Customer Service Work Type: Part Read more
All contents are Copyright 1984-2011 by Xplain Corporation. All rights reserved. Theme designed by Icreon.