00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
#ifndef UML_BEHAVIORALFEATURE_HPP
00026
#define UML_BEHAVIORALFEATURE_HPP
00027
00028
#include <UML/Feature.hpp>
00029
00030
namespace UML
00031 {
00032
00033
class BehavioralFeature;
00034
class Parameter;
00035
00036 class BehavioralFeature :
virtual public UML::
Feature
00037 {
00038
public:
00039 typedef OMF::BasicClass<BehavioralFeature, OMF::Abstract> Proxy;
00040
00041
BehavioralFeature();
00042
virtual ~BehavioralFeature();
00043
00044
const OMF::Boolean &
isQuery() const;
00045
void setIsQuery(const OMF::Boolean &value);
00046
void clearIsQuery();
00047
00048 const OMF::Set ¶meter();
00049
void addParameter(
Parameter *value);
00050
void removeParameter(
Parameter *value);
00051
void clearParameter();
00052
00053 private:
00054 OMF::Boolean _isQuery;
00055 OMF::Set _parameter;
00056 };
00057
00058
00059 }
00060
00061 #endif