사용자 정의 속성 및 오퍼레이션

이 섹션에서는 모든 오퍼레이션 및 속성 데이터 멤버가 정의됩니다. 이 섹션의 코드는 클래스 오퍼레이션 및 속성의 직접 변환입니다. 모델에서 오퍼레이션 및 속성을 제거하거나 추가하여 제어합니다.

예를 들면, 다음과 같습니다.

////    User explicit entries     ////
public :
   //## operation op1()  // Annotation for the operation
   void op1();           // Definition of an operation
protected :
   // Attributes:
   //## attribute attr1  // Annotation for an attribute
   attrType1 attr1;      // Definition of an attribute
////    User implicit entries     ////
public :
   // Constructors and destructors:
   class(OMThread* thread = theMainThread);
   virtual ~class();    // Generated destructor

피드백