>
> I do have generateJsInteropExports flag in my pom:
>

 <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>gwt-maven-plugin</artifactId>
        <version>${gwt.maven.plugin.version}</version> <-- version 
is 2.8.0-rc2-patched -->
        <configuration>
          <source>${java.version}</source> <-- version is 1.8 -->
          <target>${java.version}</target>
          <strict>true</strict>
          <style>${gwt.style}</style>

          <extraJvmArgs>-Xmx2048m -Xss1024k 
-XX:MaxPermSize=256m</extraJvmArgs>
          <hostedWebapp>${webappDirectory}</hostedWebapp>
          <superDevMode>true</superDevMode>
          <generateJsInteropExports>true</generateJsInteropExports>
          <runTarget>Project.html</runTarget>
          <module>com.example.project.TestProject</module>
          <mode>htmlunit</mode>
        </configuration>
        <executions>
          <execution>
            <id>compile</id>
            <goals>
              <goal>compile</goal>
            </goals>
          </execution>
          <execution>
            <id>run</id>
            <goals>
              <goal>run</goal>
            </goals>
          </execution>
          <execution>
            <id>test</id>
            <goals>
              <goal>test</goal>
            </goals>
            <configuration>
              <includes>**/GwtTestSuite*.java</includes>
            </configuration>
          </execution>
        </executions>
      </plugin>

and JsSubmitFunction definition is:

@JsFunction
@FunctionalInterface
public interface JsSubmitFunction {
void exec(ExtFormBasic basic, ExtFormSubmit action);
}

Other thing: I get no error neither in browser console nor in eclipse..

Thank you

-- 
You received this message because you are subscribed to the Google Groups "GWT 
Contributors" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-web-toolkit-contributors/debc4fa5-7d80-4198-87cf-ca1bcab2604e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to