• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Tim Cooke
  • Campbell Ritchie
  • paul wheaton
  • Jeanne Boyarsky
  • Ron McLeod
Sheriffs:
  • Paul Clapham
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Piet Souris
Bartenders:

JSNI - invoking native method from another native method

 
Greenhorn
Posts: 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
I am newbie to JSNI + GWT.

I have two native methods and the requirement is to invoke one of the native method from another native method, I am not sure if this is possible, if so how should I able to call the another native method from the native method.

Below is the code snippet.

Thanks in advance.

public static native void testFunction() /*-(
var $ = $wnd.$;
$(document).ready(function(){
function testMyFunction(){
alert("hello world!");
}
});
}-*/;

public static native void commonjQuery() /*-{
var $ = $wnd.$;

$(document).ready(function(){

testFunction(); --> Trying to invoke testFunction() from here, but it doesn't seem to work, please help in suggesting how this can be achieved.

var mainWidth;
var mainHeight;
var headerHeight;

...
...
}
});
}-*/;


Thanks,
Senthil Jayakumar
native_method.JPG
[Thumbnail for native_method.JPG]
reply
    Bookmark Topic Watch Topic
  • New Topic