blob: 5fe3d10d20766cd8c74ffe83b1b08abeffe74f3a [file] [log] [blame]
<%
if (model.shouldImplementAbstractMethods()) {
for (Method method : model.getUnimplementedMethods()) {
%>
/**
* @see <%= method.getContainingJavaClass() %>#<%= method.getName() %>(<%= method.getParamsForJavadoc() %>)
*/
public <%= method.getReturnType() %> <%= method.getName() %>(<%= method.getParamsForDeclaration() %>) {
// TODO Auto-generated method stub
<%
String defaultReturnValue = method.getDefaultReturnValue();
if (defaultReturnValue != null) {
%>
return <%= defaultReturnValue %>;
<%
}
%>
}
<%
}
}
%>