1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
|
#ifndef _UMLBASEPINPARAMETER_H
#define _UMLBASEPINPARAMETER_H
#include "UmlActivityObject.h"
#include <qcstring.h>
#include "aDirection.h"
#include "aParameterEffectKind.h"
class UmlBasePinParameter : public UmlActivityObject {
protected:
// the constructor, do not call it yourself !!!!!!!!!!
UmlBasePinParameter(void * id, const QCString & s) : UmlActivityObject(id, s) {
}
public:
// return the isUnique attribute
bool isUnique();
// set the isUnique attribute
//
// On error return FALSE in C++, produce a RuntimeException in Java
bool set_IsUnique(bool v);
// return the isException attribute, exclusive with isStream
bool isException();
// set the isException attribute, exclusive with isStream
//
// On error return FALSE in C++, produce a RuntimeException in Java
bool set_IsException(bool v);
// return the direction
aDirection direction();
// set the direction
//
// On error return FALSE in C++, produce a RuntimeException in Java
bool set_Direction(aDirection v);
// return the effect
aParameterEffectKind effect();
// set the effect
//
// On error return FALSE in C++, produce a RuntimeException in Java
bool set_Effect(aParameterEffectKind v);
private:
bool _unique : 1;
bool _exception : 1;
bool _stream : 1;
int _dummy : 4;
aDirection _dir : 8;
aParameterEffectKind _effect : 8;
protected:
virtual void read_uml_();
};
#endif
|