Skip to main content
summaryrefslogtreecommitdiffstats
blob: 5fe3d10d20766cd8c74ffe83b1b08abeffe74f3a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<%
	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 %>;
<%
			} 
%>
    }
<% 
		}
	} 
%>

Back to the top