CSC/ECE 517 Fall 2011/ch4 4i aa: Difference between revisions

From Expertiza_Wiki
Jump to navigation Jump to search
Line 34: Line 34:
===Stickies===
===Stickies===
Probably the simplest way to reproduce CRC cards on a computer is using applications like [http://www.youtube.com/watch?v=M1DscVsO2uE Stickies] on the Mac OSX and [http://windows.microsoft.com/en-US/windows7/products/features/sticky-notes Sticky Notes] on Microsoft Windows 7.
Probably the simplest way to reproduce CRC cards on a computer is using applications like [http://www.youtube.com/watch?v=M1DscVsO2uE Stickies] on the Mac OSX and [http://windows.microsoft.com/en-US/windows7/products/features/sticky-notes Sticky Notes] on Microsoft Windows 7.
On Mac OSX a Sticky note looks like
[[File:Stickies.png]]


===QuickCRC===
===QuickCRC===

Revision as of 22:07, 16 October 2011

"CRC Card Design Tools"

Class-Responsibility-Collaborator Cards were "invented to document collaborative design decisions."<ref name="beck">"A Laboratory For Teaching Object-Oriented Thinking" by Beck and Cunningham</ref> They are a way to discover classes, determine the responsibilities of each of those classes, and describe their relationships. The information for each class is written on a separate card.<ref name="lecnotes">Lecture Notes</ref> This article will discuss CRC cards and how well they have been implemented in several modern software packages.


Introduction

A CRC card is a notecard laid out in a particular fashion where one may define a class, its responsibilities, and collaborators (see figures below). In this definition, a class refers to an object in the traditional object-oriented sense; responsibilities refers to the actions that the object must take; and collaborators refers to the other objects with which the originally defined class must interact.<ref name="skrien">Skrien, Dale John. Object-oriented Design Using Java. Boston: McGraw-Hill Higher Education, 2009. Print.</ref> In other words, the class name of an object "creates a vocabulary for discussing a design," the responsibilities "identify problems to be solved," and collaborators are "object which will send or be sent messages in the source satisfying responsibilities."<ref name="beck"/>



Class-Responsibility-Collaborator cards are an evolution of simple use cases. In such use cases, “actors” would be defined and a “story” of their actions would be written. Extraction of the nouns and verbs in these stories would be leveraged in an effort to help determine the relevant classes and methods.<ref name="skrien"/>


One of the benefits of CRC cards is their portability since they are made using 4"x6" index cards because they are "cheap, portable, readily available, and familiar."<ref name="beck"/> Another benefit is their ability to design systems without drilling down into low-level details, but having the extensibility to do so if required.<ref name="skrien"/> A third benefit of CRC cards is their ability to be incorporated into genuine human interactions where developers could role play. In these interactions, developers would be given blank cards and use cases would be acted out. As the use case is performed, classes and actions are written down and refined, ultimately resulting in a comprehensive class definition.


The physical spacial arrangement of the cards can have informal meaning:

  • When cards overlap it can mean that the objects represented by the cards are collaborating
  • A card placed above another card can mean that the object it represents is supervising the object represented by the card below
  • Cards representing parts are usually placed below the card representing the whole
  • "Refinements of an abstraction can be collected and handled as a single pile of cards with the most abstract card on top where it can represent the rest"<ref name="beck"/>


Refining the role-playing suggestion above, Beck and Cunningham "suggest driving a design toward completion with the aid of execution scenarios. We start with only one or two obvious cards and start playing "what-if". If the situation calls for a responsibility not already covered by one of the objects we either add the responsibility to one of the objects, or create a new object to address that responsibility. If one of the object becomes too cluttered during this process we copy the information on its card to a new card, searching for more concise and powerful ways of saying what the object does. If it is not possible to shrink the information further, but the object is still too complex, we create a new object to assume some of the responsibilities." The goal of this exercise is to "encourage designers to pick up the card whose role they are assuming while 'executing' a scenario and stress the importance of creating objects not to meet mythical future needs, but only under the demands of the moment. This ensures that a design contains only as much information as the designer has directly experienced, and avoids premature complexity."<ref name="beck"/>


Due to the tactile nature of CRC cards, computerization of them may seem to "defeat the point." Indeed, Beck and Cunningham think that "when designers pick up a card they seem to more readily identify with it, and are prepared to deal with the remainder of the design from its perspective. It is the value of this physical interaction that ... resist[s] a computerization of the cards."<ref name="beck"/> This article will perform a survey of the computerization of this design methodology, keeping in mind that these tools may not provide the same user experience and ultimately the same design results as the use of physical cards can. The main criteria for successful execution of computerization will be how well the application can mimick the actions of using physical cards.

Tools

Stickies

Probably the simplest way to reproduce CRC cards on a computer is using applications like Stickies on the Mac OSX and Sticky Notes on Microsoft Windows 7.

On Mac OSX a Sticky note looks like

QuickCRC

Visual Paradigm for UML

Conclusion

"Because the designs are so much more concrete, and the logical relationship between objects explicit, it is easier to understand, evaluate, and modify a design.

We were surprised at the value of physically moving the cards around. When learners pick up an object they seem to more readily identify with it, and are prepared to deal with the remainder of the design from its perspective. It is the value of this physical interaction that has led us to resist a computerization of the cards.

The need to retain the value of physical interaction points to the need for a new kind of user interface and programming environment as far beyond what we have today as our current systems are beyond the tool-oriented environments of the past." [1 Beck/Cunningham]

See also

References

<references/>

[1] Beck/Cunningham

[2] CRC Cards: An Agile Thinking Tool

[3] CRC cards on Wikipedia

[4] Hot Draw

More a programming tool than design [5] HyperCard

More a programming tool than design [6] HyperCard Group

More a programming tool than design [7] SuperCard

Acquisition made this obsolete it seems [8] MetaCard

Acquisition made this obsolete it seems [9] MetaCard Group

More a programming tool than design [10] Revolution

More a programming tool than design [11] PhytonCard

More a programming tool than design [12] FreeCard

More a programming tool than design [13] FreeCard Group

Aldo [14] Visual Paradigm for UML

Aldo [15] QuickCRC

Andy will evaluate [16] Software Ideas Modeler

Andy will evaluate [17] CRC Card Editor

Aldo [18] Stickies on Mac

Andy will evaluate [19] Sticky Notes on Windows 7

Further Reading

External Links