Lines Matching refs:default_method
909 unique_ptr<Method> default_method(new Method); in generate_default_impl_method() local
910 default_method->comment = method.GetComments(); in generate_default_impl_method()
911 default_method->modifiers = PUBLIC | OVERRIDE; in generate_default_impl_method()
912 default_method->returnType = method.GetType().GetLanguageType<Type>()->JavaType(); in generate_default_impl_method()
913 default_method->returnTypeDimension = method.GetType().IsArray() ? 1 : 0; in generate_default_impl_method()
914 default_method->name = method.GetName(); in generate_default_impl_method()
915 default_method->statements = new StatementBlock; in generate_default_impl_method()
917 default_method->parameters.push_back( in generate_default_impl_method()
921 default_method->exceptions.push_back(method.GetType() in generate_default_impl_method()
929 default_method->statements->Add( in generate_default_impl_method()
932 return default_method; in generate_default_impl_method()