[ERROR] Line 76: No source code is available for type com.sencha.gxt.explorer.client.app.ui.ExampleContainer; did you forget to inherit a required module?

2018-03-13 Thread Руслан Шарипжанулы
-- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscr...@googlegroups.com. To post to this group, send email to

Re: GWT/Maven: No source code is available for type junit.framework.Test; did you forget to inherit a required module?

2017-01-28 Thread Magnus
Hello Jens! On Saturday, January 28, 2017 at 5:24:56 PM UTC+1, Jens wrote: > > >>- src/main/java/mylib/general >>- src/main/java/mylib/web >> >> src/main/java/mylib/web.gwt.xml >> >> >> >> >> >> >> >> >> That would work, as long as src/main/java/mylib or >

Re: GWT/Maven: No source code is available for type junit.framework.Test; did you forget to inherit a required module?

2017-01-28 Thread Jens
> I'd start with a new maven project "mylib", which is based on a > simple archetype-quickstart maven stub, and I'd add two subfolders under > src/main/java/mylib: > >- src/main/java/mylib/general >- src/main/java/mylib/web > > Then, I'd add the following file: > >

Re: GWT/Maven: No source code is available for type junit.framework.Test; did you forget to inherit a required module?

2017-01-28 Thread Magnus
Hello Thomas, thank you for all the explanations! I took a look at gwt-user.jar. It looks very interesting. There are a lot of subfolders, where each one seems to be some sort of micro system, including several subfolrders with the common names ("client", "public", ...) as well as several

Re: GWT/Maven: No source code is available for type junit.framework.Test; did you forget to inherit a required module?

2017-01-27 Thread Thomas Broyer
On Friday, January 27, 2017 at 4:07:16 AM UTC+1, Magnus wrote: > > Hello Thomas, > > I solved the actual problem by removing the Maven generated AppTest.java > from the src/test/ path. > However, my further plans are concerned by what you mentioned below: > > GWT doesn't care about folders, it

Re: GWT/Maven: No source code is available for type junit.framework.Test; did you forget to inherit a required module?

2017-01-26 Thread Magnus
Hello Thomas, I solved the actual problem by removing the Maven generated AppTest.java from the src/test/ path. However, my further plans are concerned by what you mentioned below: GWT doesn't care about folders, it reads resources from the classpath. >> >> But then I don't really understand

Re: GWT/Maven: No source code is available for type junit.framework.Test; did you forget to inherit a required module?

2017-01-26 Thread Thomas Broyer
On Thursday, January 26, 2017 at 5:26:21 PM UTC+1, Magnus wrote: > > Hello Thomas! > > > I'd suggest getting Maven to work before Eclipse > > Let me explain this: > I am in the middle of a migration of my code towards Maven. Before this, I > had this situation: > >- a pure java library

Re: GWT/Maven: No source code is available for type junit.framework.Test; did you forget to inherit a required module?

2017-01-26 Thread Magnus
Hello Thomas! > I'd suggest getting Maven to work before Eclipse Let me explain this: I am in the middle of a migration of my code towards Maven. Before this, I had this situation: - a pure java library (lib-java) - a GWT-based java library (lib-gwt) - several applications which use

Re: GWT/Maven: No source code is available for type junit.framework.Test; did you forget to inherit a required module?

2017-01-25 Thread Thomas Broyer
GWT doesn't care about folders, it reads resources from the classpath. And Eclipse does not have notions of "main" and test classpaths, so src/test/java is added to the classpath just like src/main/java. That said, a properly configured Eclipse+Maven+GWT project should configure GWT tasks to

Re: GWT/Maven: No source code is available for type junit.framework.Test; did you forget to inherit a required module?

2017-01-25 Thread Magnus
Hello Juan! On Wednesday, January 25, 2017 at 7:40:06 PM UTC+1, Juan Pablo Gardella wrote: > > I believe you don't want compile junit classes. > > Remove them from the src path that you instructed GWT to process. See an > example at: >

Re: GWT/Maven: No source code is available for type junit.framework.Test; did you forget to inherit a required module?

2017-01-25 Thread Juan Pablo Gardella
I believe you don't want compile junit classes. [ERROR] Line 26: No source code is available for type junit.framework.Test; did you forget to inherit a required module? [ERROR] Line 28: No source code is available for type junit.framework.TestSuite; did you forget to inherit

GWT/Maven: No source code is available for type junit.framework.Test; did you forget to inherit a required module?

2017-01-25 Thread Magnus
the application, I get this error: Compiling module bcs.bcs Tracing compile failure path for type 'msw.lib.awi.AppTest' [ERROR] Errors in 'file:/home/warker/dvl/prj/msw-lib-awi/src/test/java/msw/lib/awi/AppTest.java' [ERROR] Line 26: No source code is available for type

Re: “No source code is available for type”

2016-07-18 Thread zakaria amine
path for type 'com.test.client.test'[INFO] > [ERROR] Errors in > 'file:/C:/Users/zakaria/Desktop/myWork/GWidgets/workspace/testing/src/main/java/com/test/client/test.java'[INFO] > [ERROR] Line 23: No source code is available for type > com.gwidgets.leaflet.options.MapO

Re: “No source code is available for type”

2016-07-18 Thread あああいいい
Hi GWT is tool of java to javascript . your project need real java files of lib to compile. 2016-07-19 4:35 GMT+09:00 natan clara : > Don't exclude *.java. It's need compile in gwt. > > > > Em 18/07/2016 15:03, Thomas Broyer escreveu: > >> Why are you excluding *.java

Re: “No source code is available for type”

2016-07-18 Thread natan clara
Don't exclude *.java. It's need compile in gwt. Em 18/07/2016 15:03, Thomas Broyer escreveu: Why are you excluding *.java files from your JAR? -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and stop receiving

“No source code is available for type”

2016-07-18 Thread Thomas Broyer
Why are you excluding *.java files from your JAR? -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscr...@googlegroups.com. To post to this

Re: “No source code is available for type”

2016-07-18 Thread natan clara
[INFO] [ERROR] Errors in 'file:/C:/Users/zakaria/Desktop/myWork/GWidgets/workspace/testing/src/main/java/com/test/client/test.java' [INFO] [ERROR] Line 23: No source code is available for type com.gwidgets.leaflet.options.MapOptions; did you forget to inherit a required module?

Re: “No source code is available for type”

2016-07-18 Thread あああいいい
sting/src/main/java/com/test/client/test.java'[INFO] > [ERROR] Line 23: No source code is available for type > com.gwidgets.leaflet.options.MapOptions; did you forget to inherit a required > module?[INFO] [ERROR] Line 23: No source code is available for > t

“No source code is available for type”

2016-07-18 Thread zakaria amine
'com.test.client.test'[INFO] [ERROR] Errors in 'file:/C:/Users/zakaria/Desktop/myWork/GWidgets/workspace/testing/src/main/java/com/test/client/test.java'[INFO] [ERROR] Line 23: No source code is available for type com.gwidgets.leaflet.options.MapOptions; did you forget to inherit

Re: GWT “No source code is available for type” when incrementalCompileWarnings flag set to true

2015-04-16 Thread San
path for type 'my.module.client.entryPoint.MyModuleEntryPoint'[INFO] [ERROR] Errors in 'jar:file:/path/to/jar.jar!/my/module/client/entryPoint/MyModuleEntryPoint.java'[INFO] [ERROR] Line 76: No source code is available for type my.module.service.client.SomeClientClass; did

Re: GWT “No source code is available for type” when incrementalCompileWarnings flag set to true

2015-04-16 Thread Juan Pablo Gardella
] Line 76: No source code is available for type my.module.service.client.SomeClientClass; did you forget to inherit a required module? However I have the required line in MyModule.gwt.xml: inherits name=my.module.service.client.SomeClient/ What could cause the problem? Thanks. -- You

GWT “No source code is available for type” when incrementalCompileWarnings flag set to true

2015-02-05 Thread Anton Samoylov
/to/jar.jar!/my/module/client/entryPoint/MyModuleEntryPoint.java'[INFO] [ERROR] Line 76: No source code is available for type my.module.service.client.SomeClientClass; did you forget to inherit a required module? However I have the required line in MyModule.gwt.xml: inherits name

[ERROR] [xrequestfactory] - : No source code is available for type com.request.server.xxxRequestFactory; did you forget to inherit a required module?

2014-09-01 Thread kullayappa macha
I am getting the following error please help me out, Thanks in Advance... [ERROR] [crequestfactory] - Line 17: No source code is available for type com.request.server.EmployeeRequestFactory; did you forget to inherit a required module? [ERROR] [crequestfactory] - Unable to find type

Re: No source code is available for type com.google.gwt.user.server.rpc.RemoteServiceServlet;

2013-07-18 Thread Maxim Dmitriev
Thanks! [ERROR] Line 6: No source code is available for type com.google.gwt.user.server.rpc.RemoteServiceServlet; did you forget to inherit a required module? This error disappeared after I had removed source path=server/ from my Project.gwt.xml file On Tuesday, March 23, 2010 9:44:33 PM

Re: No source code is available for type com.google.gwt.autobean.shared.AutoBean

2013-06-07 Thread Chris Blark
thanks. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscr...@googlegroups.com. To post to this group, send email to

Re: No Source code is available for type client.Utilityt, did you forget to inherit a required module?

2013-03-15 Thread Michael Prentice
I ran into this sort of a problem today. I followed the steps from TONS of articles, tutorials, guides, and posts. But none worked! Here was the final solution after hours of banging my head: I was using the source path tag wrong in gwt.xml in my external jar: *WRONG:* source path='auto.dto'/

GWT throwing No source code is available for type on adding a new class in client

2012-10-02 Thread new_gwt
LoginGWT(); Error is No source code is available for type mystock.client.LoginGWT; did you forget to inherit a required module? My gwt.xml is as module rename-to='stockexample' !-- Inherit the core Web Toolkit stuff.-- inherits name='com.google.gwt.user.User

Re: GWT throwing No source code is available for type on adding a new class in client

2012-10-02 Thread Jens
Your structure should be: src |-- mystock |-- client | |-- Stockexample.java | |-- LoginGWT.java |-- StockExample.gwt.xml If thats your structure, does the error go away if you add source path=client/ to your StockExample.gwt.xml? Following the documentation it should

No source code is available for type com.google.code.p.gwtchismes.client.GWTCDatePicker

2012-04-04 Thread Mithun
Hi, At the time of building our project, we are getting following error: [ERROR] Line 51: No source code is available for type com.google.code.p.gwtchismes.client.GWTCDatePicker; did you forget to inherit a required module? It would be very helpful if someone can give me some

Re: No source code is available for type com.google.code.p.gwtchismes.client.GWTCDatePicker

2012-04-04 Thread g p
Have you read and followed the steps described at http://code.google.com/p/gwtchismes/wiki/GwtChismes_QuickStart ? On 4 April 2012 11:31, Mithun mithun.h...@gmail.com wrote: Hi, At the time of building our project, we are getting following error: [ERROR] Line 51: No source code

Re: No source code is available for type com.google.web.bindery.requestfactory.vm.impl.Deobfuscator.Builder; did you forget to inherit a required module?

2012-01-26 Thread Johann
ive got the same error. do you find a solution? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/uPih4_fVGLIJ. To post to this group, send email

Re: Problem Running DynaTableRf sample app in Eclipse Indigo: No source code is available for type javax.validation.ConstraintViolationT

2011-11-16 Thread Nicolas
Well it works after manually adding the javax.validation-validation-api-1.0.0.GA-sources.jar to the classpath. Don't understand it, since it should already have been to the classpath throught maven -- You received this message because you are subscribed to the Google Groups Google Web Toolkit

Problem Running DynaTableRf sample app in Eclipse Indigo: No source code is available for type javax.validation.ConstraintViolationT

2011-11-15 Thread Nicolas Schwarzentrub
artifactIdvalidation-api/artifactId version1.0.0.GA/version /dependency However if I try to run with the gwt plugin in eclipse indigo I got the following Error: [ERROR] [dynatablerf] - Line 97: No source code is available for type javax.validation.ConstraintViolationT; did you forget to inherit

Re: No source code is available for type java.io.FileNotFoundException

2011-11-06 Thread Kevin Jordan
wrote: Hi, When i am trying to use File Handling at client side and so for the same i have to use FileNotFoundException handling. But i am getting following error: No source code is available for type java.io.FileNotFoundException; did you forget to inherit a required module? It seems

No source code is available for type java.io.FileNotFoundException

2011-11-05 Thread Ankur Agrawal
Hi, When i am trying to use File Handling at client side and so for the same i have to use FileNotFoundException handling. But i am getting following error: No source code is available for type java.io.FileNotFoundException; did you forget to inherit a required module? It seems that the Emulated

Re: No source code is available for type java.io.FileNotFoundException

2011-11-05 Thread Brandon Donnelson
Some Java classes are not emulated on the client side or translated into javascript. You'll have to use that in the .server.* side area. Brandon -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit

No source code is available for type org.gwtcmis.model.restatom.Ato­mEntry; did you forget to inherit a required module?

2011-10-24 Thread Prat2511
: No source code is available for type org.gwtcmis.model.restatom.AtomEntry; did you forget to inherit a required module? [ERROR] [cimsapplication] - Line 130: No source code is available for type org.gwtcmis.model.EnumBaseObjectTypeIds; did you forget to inherit a required module? .. when i try

Re: No source code is available for type org.gwtcmis.model.restatom.Ato­mEntry; did you forget to inherit a required module?

2011-10-24 Thread Thomas Broyer
There's no org/gwtcmis/model/restatom/AtomEntry.gwt.xml; you should see errors that it cannot find such a file. The documentation for the project http://code.google.com/p/gwt-cmis/wiki/GwtCMISFramework says to use inherits name='org.gwtcmis.CmisClientFramework'/ -- You received this message

Re: No source code is available for type org.gwtcmis.model.restatom.Ato­mEntry; did you forget to inherit a required module?

2011-10-24 Thread András Csányi
this Project its show many error        [ERROR] [cimsapplication] - Line 113: No source code is available for type org.gwtcmis.model.restatom.AtomEntry; did you forget to inherit a required module?        [ERROR] [cimsapplication] - Line 130: No source code is available for type

Re: No source code is available for type org.gwtcmis.model.restatom.Ato­mEntry; did you forget to inherit a required module?

2011-10-24 Thread Pratyush Sinha
Oh yes.. Thanks Alot,I didnt Notice that. Thanks again.. On Mon, Oct 24, 2011 at 10:19 AM, Thomas Broyer t.bro...@gmail.com wrote: There's no org/gwtcmis/model/restatom/AtomEntry.gwt.xml; you should see errors that it cannot find such a file. The documentation for the project

Re: No source code is available for type org.gwtcmis.model.restatom.Ato­mEntry; did you forget to inherit a required module?

2011-10-24 Thread Pratyush Sinha
yes i can run the Project and see the output screen as given in http://code.google.com/p/gwt-cmis/wiki/GwtCMISClientSample but there is window alert saying Service http://xcmis.org/xcmis1/rest/cmisatom is not available. this is URL which is is SamplePresenter.java is used for repository services.

Re: No source code is available for type org.gwtcmis.model.restatom.Ato­mEntry; did you forget to inherit a required module?

2011-10-24 Thread Thomas Broyer
On Monday, October 24, 2011 11:53:45 AM UTC+2, Prat2511 wrote: yes i can run the Project and see the output screen as given in http://code.google.com/p/gwt-cmis/wiki/GwtCMISClientSample but there is window alert saying Service http://xcmis.org/xcmis1/rest/cmisatom is not available. this

Re: No source code is available for type org.gwtcmis.model.restatom.Ato­mEntry; did you forget to inherit a required module?

2011-10-24 Thread Prat2511
Yes both the web.xml and html file are correct.. but when i restart my eclipse its started working ,but with new window alert Connection establishment timed out On Oct 24, 2:23 pm, Thomas Broyer t.bro...@gmail.com wrote: On Monday, October 24, 2011 11:53:45 AM UTC+2, Prat2511 wrote: yes i

[ERROR] [cimsapplication] - Line 113: No source code is available for type org.gwtcmis.model.restatom.AtomEntry; did you forget to inherit a required module?

2011-10-21 Thread Prat2511
: No source code is available for type org.gwtcmis.model.restatom.AtomEntry; did you forget to inherit a required module? [ERROR] [cimsapplication] - Line 130: No source code is available for type org.gwtcmis.model.EnumBaseObjectTypeIds; did you forget to inherit a required module? .. when i try

No source code is available for type com.google.web.bindery.requestfactory.vm.impl.Deobfuscator.Builder; did you forget to inherit a required module?

2011-09-08 Thread Brad Leupen
/ CoreRequestFactoryDeobfuscatorBuilder.java' No source code is available for type com.google.web.bindery.requestfactory.vm.impl.Deobfuscator.Builder; did you forget to inherit a required module? It's not clear to me what module (if any) I must inherit. Has anyone else seen this? Thanks, Brad

Re: No source code is available for type com.google.web.bindery.requestfactory.vm.impl.Deobfuscator.Builder; did you forget to inherit a required module?

2011-09-08 Thread Brad Leupen
I just wasted an hour on this. Turns out you no longer compile GWT 2.4 with the -strict option if you use request factory. Come on guys. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

No source code is available for type javax.xml.parsers.DocumentBuilderFactory

2011-09-01 Thread Vrushali Patil
is as follows. It gives the error as No source code is available for type javax.xml.parsers.DocumentBuilderFactory - It is some sort of Inheritance issue. But I am unaware of what exactly inherit name i should be using. Please guide. - code

Aw: No source code is available for type javax.xml.parsers.DocumentBuilderFactory

2011-09-01 Thread Jens
In general you can only use Java classes on the client side (everything that is in your client and shared package) listed in: http://code.google.com/intl/de-DE/webtoolkit/doc/latest/RefJreEmulation.html So you can not use most of the classes in your code on client side. You have to: - use

Re: No source code is available for type javax.xml.parsers.DocumentBuilderFactory

2011-09-01 Thread Vrushali Patil
Hi I tried using XMLParser as u suggested. But getting this error. The code is public void onModuleLoad() { xmlstring = callquery.xmlget_capabilities(); System.out.println(xmlstring); System.out.println(xmlstring. length()); xmldoc = XMLParser.parse(xmlstring);

Re: No source code is available for type javax.xml.parsers.DocumentBuilderFactory

2011-09-01 Thread Vrushali Patil
Hi I tried using XMLParser as u suggested. But getting this error. The code is public void onModuleLoad() { xmlstring = callquery.xmlget_capabilities(); System.out.println(xmlstring); System.out.println(xmlstring.length()); xmldoc =

Re: No source code is available for type com.google.gwt.autobean.shared.AutoBean

2011-07-26 Thread Thomas Broyer
inherits name=com.google.gwt.autobean.AutoBean / But I'd first suggest you upgrade to GWT 2.3 (and then 2.4 as soon as it's out) and use inherits name=com.google.web.bindery.autobean.AutoBean/ instead. -- You received this message because you are subscribed to the Google Groups Google Web

No source code is available for type com.google.gwt.autobean.shared.AutoBean

2011-07-25 Thread amos
Hi, I'm trying to use AutoBean to serialize and deserialize JSON. The application is failing with the error No source code is available for type com.google.gwt.autobean.shared.AutoBean. Do I need to add some includes or some other configuration in order to use AutoBean? Thanks, Amos -- You

Re: No source code is available for type com.google.gwt.user.server.rpc.RemoteServiceServlet; did you forget to inherit a required module?

2011-06-27 Thread Zgouingo
model into the StockWatcher example project, but in my personnal project, it won't work. I get this message : No source code is available for type com.google.gwt.user.server.rpc.RemoteServiceServlet; did you forget to inherit a required module? on the following line of my server implementation

Re: No source code is available for type com.google.gwt.user.server.rpc.RemoteServiceServlet; did you forget to inherit a required module?

2011-06-27 Thread ashwin.desi...@gmail.com
project. I succeeded in adapting the RPC model into the StockWatcher example project, but in my personnal project, it won't work. I get this message : No source code is available for type com.google.gwt.user.server.rpc.RemoteServiceServlet; did you forget to inherit a required

Re: No source code is available for type com.google.gwt.user.server.rpc.RemoteServiceServlet; did you forget to inherit a required module?

2011-06-27 Thread Kevin Jordan
into the StockWatcher example project, but in my personnal project, it won't work. I get this message : No source code is available for type com.google.gwt.user.server.rpc.RemoteServiceServlet; did you forget to inherit a required module? on the following line of my server implementation of the RPC

No source code is available for type java.util.Calendar;

2011-06-22 Thread Ashish
Hi, There is one static methond which is called by onModuleLoad() method. that method use java.util.calendar object. when i try to run this it gives me No source code is available for type java.util.Calendar; Even i have added java source jar file in my java build path. any one can help me

Re: No source code is available for type java.util.Calendar;

2011-06-22 Thread Jim Douglas
code is available for type java.util.Calendar; Even i have added java source jar file in my java build path. any one can help me on this ? thanks! Ashish -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email

Re: No source code is available for type java.lang.NoSuchFieldError

2011-06-21 Thread Paul Robinson
On 20/06/11 21:21, Hilco Wijbenga wrote: On 20 June 2011 11:59, Nathan Klattn8kl...@gmail.com wrote: I've inherited a GWT project and I'm receiving the following compiler error (more info below): [java] [ERROR] Line 51: No source code is available for type java.lang.NoSuchFieldError; did

Re: No source code is available for type java.lang.NoSuchFieldError

2011-06-21 Thread Ben Munge
...@gmail.com wrote: I've inherited a GWT project and I'm receiving the following compiler error (more info below): [java] [ERROR] Line 51: No source code is available for type java.lang.NoSuchFieldError; did you forget to inherit a required module? It's complaining about a core part

Re: No source code is available for type java.lang.NoSuchFieldError

2011-06-21 Thread Nathan Klatt
Makes perfect sense - thanks so much for the reply and the link! -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/96qmqceSNOQJ. To post to this

Re: No source code is available for type java.lang.NoSuchFieldError

2011-06-21 Thread Nathan Klatt
Thanks for the idea - right now I'm strictly command-line (on a remote server) but I'll add this to my list of Reasons to Develop on My Local Machine with a GUI. :) -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion

No source code is available for type java.lang.NoSuchFieldError

2011-06-20 Thread Nathan Klatt
I've inherited a GWT project and I'm receiving the following compiler error (more info below): [java] [ERROR] Line 51: No source code is available for type java.lang.NoSuchFieldError; did you forget to inherit a required module? It's complaining about a core part of the language here, right

Re: No source code is available for type java.lang.NoSuchFieldError

2011-06-20 Thread Hilco Wijbenga
On 20 June 2011 11:59, Nathan Klatt n8kl...@gmail.com wrote: I've inherited a GWT project and I'm receiving the following compiler error (more info below): [java] [ERROR] Line 51: No source code is available for type java.lang.NoSuchFieldError; did you forget to inherit a required module

No source code is available for type com.google.gwt.user.server.rpc.RemoteServiceServlet; did you forget to inherit a required module?

2011-06-17 Thread Zgouingo
succeeded in adapting the RPC model into the StockWatcher example project, but in my personnal project, it won't work. I get this message : No source code is available for type com.google.gwt.user.server.rpc.RemoteServiceServlet; did you forget to inherit a required module? on the following line of my

Compile error: No source code is available for type

2011-03-29 Thread drhender
/box/common/comms/WaveClientRpc.java' [ERROR] Line 9: No source code is available for type com.google.protobuf.ExtensionRegistry; did you forget to inherit a required module? [ERROR] Line 12: No source code is available for type com.google.protobuf.GeneratedMessage; did you forget

Re: No Source code is available for type client.Utilityt, did you forget to inherit a required module?

2011-02-09 Thread NAARAYANA REDDY NANDIGAMA
Hi, My requirement is I need to populate the data from my DTO class which is there on serverside. So could you please advise me on how to populate the data from DTO classes to text boxes. On Tue, Feb 8, 2011 at 11:07 AM, NAARAYANA REDDY NANDIGAMA nandigam...@gmail.com wrote: Okay. Thank you.

Re: No Source code is available for type client.Utilityt, did you forget to inherit a required module?

2011-02-08 Thread NAARAYANA REDDY NANDIGAMA
I am talking about two buttons having the same text message in java. private Button validateButtonOne = new Button(); private Button validateButtonTwo = new Button(); validateButtonOne.setText(Validate); validateButtonTwo.setText(validate); buttonlisteners(validateButtonOne);

Re: No Source code is available for type client.Utilityt, did you forget to inherit a required module?

2011-02-08 Thread Hilco Wijbenga
On 8 February 2011 10:20, NAARAYANA REDDY NANDIGAMA nandigam...@gmail.com wrote: I am talking about two buttons having the same text message in java. private Button validateButtonOne = new Button(); private Button validateButtonTwo = new Button(); validateButtonOne.setText(Validate);

Re: No Source code is available for type client.Utilityt, did you forget to inherit a required module?

2011-02-08 Thread NAARAYANA REDDY NANDIGAMA
Okay. Thank you. On Tue, Feb 8, 2011 at 10:38 AM, Hilco Wijbenga hilco.wijbe...@gmail.comwrote: On 8 February 2011 10:20, NAARAYANA REDDY NANDIGAMA nandigam...@gmail.com wrote: I am talking about two buttons having the same text message in java. private Button validateButtonOne = new

No Source code is available for type client.Utilityt, did you forget to inherit a required module?

2011-02-07 Thread Dallas007
how to fix this could you please advise me on this?. How to use my Utility class in side client code? [INFO] [ERROR] Errors in 'file:/C:/projects/client/Utility.java' [INFO] [ERROR] Line 206: No source code is available for type client.Utility; did you forget to inherit a required

Re: No Source code is available for type client.Utilityt, did you forget to inherit a required module?

2011-02-07 Thread Hilco Wijbenga
On 5 February 2011 21:14, Dallas007 nandigam...@gmail.com wrote: Hi, i am new to GWT so need help please. I'm am not able to compile my code due to below error. Here are my project details, I have added a new class Utility.java which is out side of Client package. I have instantiae the

Re: No Source code is available for type client.Utilityt, did you forget to inherit a required module?

2011-02-07 Thread NAARAYANA REDDY NANDIGAMA
Thank you. I have another requirement.. I have two buttons with same name validate. I need to identify which button is clicked when I user click on any one of validate buttton. I thought i can use button.getText but both buttons has the same name so not sure what to do. Could you please advise me

Re: No Source code is available for type client.Utilityt, did you forget to inherit a required module?

2011-02-07 Thread Hilco Wijbenga
On 7 February 2011 17:41, NAARAYANA REDDY NANDIGAMA nandigam...@gmail.com wrote: I have another requirement.. I have two buttons with same name validate. I need to identify which button is clicked when I user click on any one of validate buttton. I thought i can use button.getText but both

Re: No source code is available for type org.cementj.base.ApplicationException; did you forget to inherit a required module?

2010-07-26 Thread AlexG
ApplicationException(present in client Package), and i hav added the corresponding Jar file into the Project libraries.. In Client Package , methods in the Interface throws  user defined ExceptionAnd  while compiling i get this error No source code is available for type

No source code is available for type org.cementj.base.ApplicationException; did you forget to inherit a required module?

2010-07-25 Thread jana
ExceptionAnd while compiling i get this error No source code is available for type org.cementj.base.ApplicationException; did you forget to inherit a required module? Kindly help me ,.. how to solve this error.. Regards, Jana -- You received this message because you are subscribed to the Google

Re: eclipse: using external jar library - No source code is available for type type; did you forget to inherit a required module?

2010-06-02 Thread Piyush Garg
*No source code is available for type mylib.Method; did you forget to inherit a required module? *means gwt compilation not able to locate the source code for mylib.Method you need to have source code in your jar plus an xml file in package which you are accessing and inherit line in you gwt

eclipse: using external jar library - No source code is available for type type; did you forget to inherit a required module?

2010-05-30 Thread Magnus
the mylib.jar file. Within the myApp directory, I added a symbolic link to mylib.jar in prj/war/WEB-INF/lib. And I added prj/war/WEB-INF/lib/mylib.jar to my project via Properties/Java Build Path/Libraries. Well, whenever I use something related to mylib.Method, I get the following error: No source code

Re: eclipse: using external jar library - No source code is available for type type; did you forget to inherit a required module?

2010-05-30 Thread kozura
/Java Build Path/Libraries. Well, whenever I use something related to mylib.Method, I get the following error: No source code is available for type mylib.Method; did you forget to inherit a required module? What does this mean and how can I resolve it? Thanks Magnus -- You received

Re: Error: No source code is available for type com.entities.EvlangDAO; did you forget to inherit a required module?

2010-04-29 Thread fomba collins
:/Projets/java/webtop/src/com/extjs/gxt/samples/desktop/client/widget/HibernateSessionFactory.java' [ERROR] Line 23: No source code is available for type java.lang.ThreadLocalT; did you forget to inherit a required module? [ERROR] Line 23: No source code is available for type

Re: Error: No source code is available for type com.entities.EvlangDAO; did you forget to inherit a required module?

2010-04-29 Thread Sripathi Krishnan
of these libraries. Here are the errors: [ERROR] Errors in 'file:/C:/Projets/java/webtop/src/com/extjs/gxt/samples/desktop/client/widget/HibernateSessionFactory.java' [ERROR] Line 23: No source code is available for type java.lang.ThreadLocalT; did you forget to inherit a required module

Re: Error: No source code is available for type com.entities.EvlangDAO; did you forget to inherit a required module?

2010-04-29 Thread bünyamin albayrak
try to use your external jar files in server-side -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-tool...@googlegroups.com. To unsubscribe from this group, send email to

Re: Error: No source code is available for type com.entities.EvlangDAO; did you forget to inherit a required module?

2010-04-29 Thread fomba collins
: Error: No source code is available for type com.entities.EvlangDAO; did you forget to inherit a required module? To: google-web-toolkit@googlegroups.com Date: Thursday, April 29, 2010, 3:40 AM You can't use hibernate or threadlocal variables on client side code. Think about it, you don't want your

Re: Error: No source code is available for type com.entities.EvlangDAO; did you forget to inherit a required module?

2010-04-29 Thread Sripathi Krishnan
? --- On *Thu, 4/29/10, Sripathi Krishnan sripathikrish...@gmail.com*wrote: From: Sripathi Krishnan sripathikrish...@gmail.com Subject: Re: Error: No source code is available for type com.entities.EvlangDAO; did you forget to inherit a required module? To: google-web-toolkit@googlegroups.com Date

Error: No source code is available for type com.entities.EvlangDAO; did you forget to inherit a required module?

2010-04-28 Thread efsiken
langList; } } here is the error: [ERROR] Errors in 'file:/C:/Projets/java/webtop/src/com/extjs/gxt/ samples/desktop/client/widget/Connection.java' [ERROR] Line 24: No source code is available for type com.entities.Evuti; did you forget to inherit a required module? [ERROR] Line 26: No source code

Re: Error: No source code is available for type com.entities.EvlangDAO; did you forget to inherit a required module?

2010-04-28 Thread Sripathi Krishnan
();i++){ nameList.add(list.get(i).getNomu()); } return langList; } } here is the error: [ERROR] Errors in 'file:/C:/Projets/java/webtop/src/com/extjs/gxt/ samples/desktop/client/widget/Connection.java' [ERROR] Line 24: No source code is available for type com.entities.Evuti; did you

No source code is available for type com.google.gwt.user.server.rpc.RemoteServiceServlet;

2010-03-23 Thread Mykhaylo Lytvynuk
Getting this error: -- No source code is available for type com.google.gwt.user.server.rpc.RemoteServiceServlet; PackageStructure is like that: +client: Na.java NaRPC.java NaRPCAsynch.java +server NaRPCImpl.java +shared DMXLicenseDTO.java XML file is: module rename

Getting No source code is available for type com.google.gwt.user.server.rpc.RemoteServiceServlet

2010-03-23 Thread Mykhaylo Lytvynuk
' [ERROR] Line 6: No source code is available for type com.google.gwt.user.server.rpc.RemoteServiceServlet; did you forget to inherit a required module? [ERROR] An internal compiler exception occurred com.google.gwt.dev.jjs.InternalCompilerException: Failed to get JNode

Re: No source code is available for type com.google.gwt.user.server.rpc.RemoteServiceServlet;

2010-03-23 Thread rudolf michael
I guess that you need to include the gwt-servlet.jar in your classpath. make sure that it is also present in the lib of your app server. On Mon, Mar 22, 2010 at 8:48 PM, Mykhaylo Lytvynuk lytvyn...@gmail.comwrote: Getting this error: -- No source code is available for type

Re: No source code is available for type com.google.gwt.user.server.rpc.RemoteServiceServlet;

2010-03-23 Thread Mykhaylo Lytvynuk
Thank you Rudolf for the reply. But I have all jars: gwt-api-checker.jar gwt-dev.jar gwt-servlet.jar gwt-soyc-vis.jar gwt-user.jar Included in my project build path in Eclipse, but it seems to me GWT compiler doesn't really care about Eclipse Java settings. How to include jars in GWT compiler, I

Re: No source code is available for type com.google.gwt.user.server.rpc.RemoteServiceServlet;

2010-03-23 Thread Paul Robinson
You have a bug in your module's .gwt.xml file here: source path=server/ This line should be removed. It's telling GWT to compile the code in your server directory to javascript. Paul -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group.

Re: No source code is available for type com.google.gwt.user.server.rpc.RemoteServiceServlet;

2010-03-23 Thread Mykhaylo Lytvynuk
() + /NoService); Complains like that: [ERROR] Errors in 'file:/C:/..Projects/NoAdmin/NoAdmin/src/com/ ho/no/client/view/DashboardView.java' [ERROR] Line 80: No source code is available for type com.ho.no.server.NoRPCImpl; did you forget to inherit

Re: No source code is available for type com.google.gwt.user.server.rpc.RemoteServiceServlet;

2010-03-23 Thread Paul Robinson
.getModuleBaseURL() + /NoService); Complains like that: [ERROR] Errors in 'file:/C:/..Projects/NoAdmin/NoAdmin/src/com/ ho/no/client/view/DashboardView.java' [ERROR] Line 80: No source code is available for type com.ho.no.server.NoRPCImpl; did you

Re: No source code is available for type com.google.gwt.user.server.rpc.RemoteServiceServlet;

2010-03-23 Thread Mykhaylo Lytvynuk
Ah that is right! Thank you On Mar 23, 2:26 pm, Paul Robinson ukcue...@gmail.com wrote: Instead of                 NoRPCAsync service = (NoRPCAsync) GWT.create(NoRPCImpl.class); try                 NoRPCAsync service = (NoRPCAsync) GWT.create(NoRPC.class); or whatever you've called

No source code is available for type com.google.gwt.maps.client

2010-03-10 Thread Muthu
classpath (war/web-inf/lib folder). However I still get the following errors.. [ERROR] Line 144: No source code is available for type com.google.gwt.maps.client.geom.LatLng; did you forget to inherit a required module? [ERROR] Line 148: No source code is available for type

Using Maven plugin with spring 3.x results in No source code is available for type ...; did you forget to inherit a required module? while compiling

2010-03-10 Thread Ludovic JEANSON
module com.ecp.gwt.Weather [INFO]Validating newly compiled units [INFO] [ERROR] Errors in 'file:/home/ludovic/workspace/ myApp_0_0_1/src/main/java/com/ecp/gwt/client/WeatherClient.java' [INFO] [ERROR] Line 44: No source code is available for type com.ecp.manager.WeatherManagerAsync

Re: No source code is available for type com.google.gwt.maps.client

2010-03-10 Thread Muthu
=com.google.gwt.maps.GoogleMaps / And also added the gwt-maps.jar in my classpath (war/web-inf/lib folder). However I still get the following errors..          [ERROR] Line 144: No source code is available for type com.google.gwt.maps.client.geom.LatLng; did you forget to inherit a required module

Line 37: No source code is available for type com.google.code.gwt.geolocation.client.Geolocation; did you forget to inherit a required module?

2010-01-12 Thread QterMgnus
that Geolocation.getProviderName() , getProviderName () is not defined when I run I get the following errors. 09:09:26.823 [ERROR] [tracking] Errors in 'file:/home/DEVS/eclipse/ workspace/Tracking/src/ml/client/HelloGeolocation.java' 09:09:26.895 [ERROR] [tracking] Line 37: No source code is available for type

Error No source code is available for type javax.jdo.PersistenceManager

2009-11-30 Thread Bryan Harper
I have a simple app the I just got ready to persist some data with. When I added the PMF.java file I got errors like the one below. [ERROR] Line 15: No source code is available for type javax.jdo.PersistenceManager; did you forget to inherit a required module? I've used the persistence manager

Re: Error No source code is available for type javax.jdo.PersistenceManager

2009-11-30 Thread Paul Robinson
, and database access stuff is not generally GWT-compilable to javascript. Paul Bryan Harper wrote: I have a simple app the I just got ready to persist some data with. When I added the PMF.java file I got errors like the one below. [ERROR] Line 15: No source code is available for type

No source code is available for type..., did you forget to inherit a required module?

2009-11-24 Thread Ajit
No source code is available for type..., did you forget to inherit a required module? Kindly help me out. Thanks. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to google-web-tool...@googlegroups.com

  1   2   >