developer
developer

Reputation: 9478

how can i call GWT method from swing application

Iam very beginner in gwt, i have a requirement to initailse gwt class or call gwt method from swing class. is it possible to do it? otherwise is there any process to do such things?

Upvotes: 0

Views: 153

Answers (1)

Renato
Renato

Reputation: 13690

GWT code is translated into JavaScript and runs inside the user's browser. It has absolutely no way of accessing code or functions in the user's machine other than what the browsers allow (like cookies). Swing is a completely different framework for desktop applications (although it certainly inspired the design of GWT), so the two frameworks are not intended to work together.

Upvotes: 2

Related Questions