The file header for the Point specification file is as follows:
/**
* (C) copyright 2004
*
* @file DefaultComponent\DefaultConfig\Point.h
* @author Ford Perfect
* @date //! Tue, 16, Mar 2004
* @brief The Point class definition
*
* Rhapsody: 5.0.1
* Component: DefaultComponent
* Configuration: DefaultConfig
* Element: Point
**/
The generated description of the Point class is as follows:
/**
* Class Point
* @brief A 2D point representation
* @see Point3D
* @warning NA
*/
//## class Point
class Point {...
The generated description of the create() operation is as follows:
/**
* Operation create(int,int)
* @brief A static method to create a new Point
* $Arguments
* @param x: [in] The new Point x coordinate
* @param y: [in] The new Point y coordinate
* @return a new Point with the specified coordinates
* @see NA
* @warning NA
*/
//## operation create(int,int)
static POint* create(int x, int y);