/*----------------------------------------------------------------------------
Copyright (c)2000 TogetherSoft LLC. Patents pending. All rights reserved.
----------------------------------------------------------------------------*/
package com.togethersoft.modules.sampleinteraction;
import com.togethersoft.modules.customproperties.RwiExtendedProperties;
/**
* Defines constants for using in the SampleInteration script.
* @version 3.0.0
* @author TogetherSoft LLC
*/
interface Constants {
// shapetypes.
String MESSAGE_SHAPE = "MessageLink";
String OBJECT_SHAPE = "Object";
// property names.
String STEREO_TYPE = "stereotype";
// stereotypes.
String STEREO_ACTOR = "actor";
// names for custom properties
String INSTANTIATES = RwiExtendedProperties.INSTANTIATES;
String CREATION_MESSAGE = "$creationMessage";
String MESSAGE_OPERATION = "$messageOperationName";
String MESSAGE_NUMBER = "$sequenceNumber";
}
|