Home | History | Annotate | Download | only in typemaps

Lines Matching refs:GetMethod

141 %define %attribute_custom(Class, AttributeType, AttributeName, GetMethod, SetMethod, GetMethodCall, SetMethodCall)
142 %ignore Class::GetMethod();
143 %ignore Class::GetMethod() const;
170 %define %attribute_readonly(Class, AttributeType, AttributeName, GetMethod, GetMethodCall)
171 %ignore Class::GetMethod();
172 %ignore Class::GetMethod() const;
196 %define %attribute(Class, AttributeType, AttributeName, GetMethod, SetMethod...)
198 %attribute_custom(%arg(Class), %arg(AttributeType), AttributeName, GetMethod, SetMethod, self_->GetMethod(), self_->SetMethod(val_))
200 %attribute_readonly(%arg(Class), %arg(AttributeType), AttributeName, GetMethod, self_->GetMethod())
204 %define %attribute2(Class, AttributeType, AttributeName, GetMethod, SetMethod...)
206 %attribute_custom(%arg(Class), %arg(AttributeType), AttributeName, GetMethod, SetMethod, &self_->GetMethod(), self_->SetMethod(*val_))
208 %attribute_readonly(%arg(Class), %arg(AttributeType), AttributeName, GetMethod, &self_->GetMethod())
238 %define %attributeval(Class, AttributeType, AttributeName, GetMethod, SetMethod...)
240 #define %mangle(Class) ##_## AttributeName ## _get(self_) new AttributeType(self_->GetMethod())
252 %ignore Class::GetMethod();
253 %ignore Class::GetMethod() const;
261 %define %attributestring(Class, AttributeType, AttributeName, GetMethod, SetMethod...)
263 #define %mangle(Class) ##_## AttributeName ## _get(self_) *new AttributeType(self_->GetMethod())
275 %ignore Class::GetMethod();
276 %ignore Class::GetMethod() const;