diff options
Diffstat (limited to 'extractInterface.pl')
-rw-r--r-- | extractInterface.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extractInterface.pl b/extractInterface.pl index c1b1e6b5..9130c495 100644 --- a/extractInterface.pl +++ b/extractInterface.pl @@ -73,7 +73,7 @@ while(<F>) { } close(F); -my $class = "public interface $oclass"; +my $class = "/**\n * $oclass.\n * \@param <T>\n */\npublic interface $oclass"; if ($lazy) { $class .= "<T> extends LazyBase<T>" if ($lazy); $head .= "import com.google.gwt.query.client.GQuery.*;\n"; |