aboutsummaryrefslogtreecommitdiffstats
path: root/extractInterface.pl
diff options
context:
space:
mode:
authorManolo Carrasco <manolo@apache.org>2014-02-02 07:34:58 +0100
committerManolo Carrasco <manolo@apache.org>2014-02-02 07:34:58 +0100
commit96705cf9e96e8e78771bfd4376cca90d00f4fbc8 (patch)
treecb5e65c6307912822c17fb8dc960260af6cf1156 /extractInterface.pl
parent30352ce90c8bded13ad5129ac03f2c2a32949a21 (diff)
downloadgwtquery-96705cf9e96e8e78771bfd4376cca90d00f4fbc8.tar.gz
gwtquery-96705cf9e96e8e78771bfd4376cca90d00f4fbc8.zip
Changing script to generate lazy interfaces so as plugins could import any class defined in GQuery class without compilation errors. Adding missing javadoc for public interface method. Overloading method in Properties so as the user could set the serialization name in case
Diffstat (limited to 'extractInterface.pl')
-rw-r--r--extractInterface.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/extractInterface.pl b/extractInterface.pl
index 0414e373..c1b1e6b5 100644
--- a/extractInterface.pl
+++ b/extractInterface.pl
@@ -76,7 +76,7 @@ close(F);
my $class = "public interface $oclass";
if ($lazy) {
$class .= "<T> extends LazyBase<T>" if ($lazy);
- $head .= "import com.google.gwt.query.client.GQuery.Offset;\n";
+ $head .= "import com.google.gwt.query.client.GQuery.*;\n";
$head .= "import com.google.gwt.query.client.LazyBase;\n\n";
}