34 string Method::getAccessSpecifier()
const
36 return accessSpecifier;
39 void Method::setAccessSpecifier(
string accessSpecifier)
41 this->accessSpecifier = accessSpecifier;
44 string Method::getMethodName()
const
49 void Method::setMethodName(
string methodName)
51 this->methodName = methodName;
54 string Method::getReturnType()
const
59 void Method::setReturnType(
string returnType)
61 this->returnType = returnType;
64 args Method::getArgumentTypes()
const
69 void Method::setArgumentTypes(args argumentTypes)
71 this->argumentTypes = argumentTypes;
74 int Method::getArgNum()
const
76 return this->argumentTypes.size();
84 argumentTypes.clear();