[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

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

2013-07-17 Thread noobinneed
Ok so I have read alot of these threads but I am very new to eclipse, GWT, XSD, and jaxb. Sooo, I have come across this when doing an ANT build. I have a JAR file that has my .class files and attached the source code via configure build path menu. I have tried putting the JAR file inside my

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

2013-07-17 Thread Jens
You either have to bundle source files into your library jar or you have to create a second jar containing only source files and put this extra jar also on classpath in your IDE (not attached to a jar, I think it must be a class path entry on its own) and in your ANT script. Finally if your

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 problem for my server side code while testing

2012-07-17 Thread Venkat
:/Users/x/workspace/ExportDataToExcel/test/com/java/client/ExportDataToExcelTest.java' [ERROR] Line 13: No source code is available for type com.ag.sapwidgets.server.ExportDataToExcel; did you forget to inherit a required module? [ERROR] Unable to find type 'com.java.client.ExportDataToExcelTest

Re: No source code is available problem for my server side code while testing

2012-07-17 Thread Paul Robinson
[ERROR] Line 13: No source code is available for type com.ag.sapwidgets.server.ExportDataToExcel; did you forget to inherit a required module? This is the problem. You are trying to convert to javascript the server class ExportDataToExcel. Either its package should be added to the set

Re: No source code is available problem for my server side code while testing

2012-07-17 Thread Venkat
Hi Paul, thanks for your reply. I understand that server side code cannot be changed to Javascript. The question here was how can I test my server side logic in GWT. On Tuesday, July 17, 2012 9:59:05 AM UTC-4, Paul Robinson wrote: [ERROR] Line 13: No source code is available for type

Re: No source code is available problem for my server side code while testing

2012-07-17 Thread Paul Robinson
On 17/07/12 15:07, Venkat wrote: how can I test my server side logic in GWT. GWT is client-side technology. To test server code, set up tests that are independent of GWT. That is, just create regular junit tests that check your server classes work properly. Paul -- You received this message

Re: No source code is available problem for my server side code while testing

2012-07-17 Thread Venkat
Hi Paul, I have changed the test from GWT Test to JUnit Test. Now I am getting this exception. I am using SmartGWT, and in server side coding I have SmartGWT classes used for Business Logic. java.lang.UnsatisfiedLinkError:

Re: No source code is available problem for my server side code while testing

2012-07-17 Thread Paul Robinson
I don't use SmartGWT, but it looks like you're using client-side code there. If you're using regular junit tests, then you must stick to server-side classes. It also looks like you're testing RPC code...do you really need to test from client to server in one test? Paul On 17/07/12 15:44,

Re: No source code is available problem for my server side code while testing

2012-07-17 Thread Venkat
I have removed the client side code from the test case, the exception is gone. But I got one exception that is below. I am guessing this is because I did not specified the test folder in my Module. If yes, can you please tell me how can I do that. Usually we specify the src folder as source in

Re: No source code is available problem for my server side code while testing

2012-07-17 Thread Venkat
Let me explain what I did, I think you got confused of what I have said. I changed the package of my test class in test folder to the same server side package in src folder. com.java.client to com.java.server. Then the exception previously showed was gone and below exception showed up. I

Re: No source code is available problem for my server side code while testing

2012-07-17 Thread Paul Robinson
On 17/07/12 16:24, Venkat wrote: I have removed the client side code from the test case, the exception is gone. But I got one exception that is below. I am guessing this is because I did not specified the test folder in my Module. If yes, can you please tell me how can I do that. Usually

Re: No source code is available problem for my server side code while testing

2012-07-17 Thread Venkat
I have done that, now it is giving me the inherit issue, can you tell me I can inherit all the classes that I want to inherit like this. Can I use * to inherit all. inherits name=com.google.gwt.* / On Tuesday, July 17, 2012 12:14:52 PM UTC-4, Paul Robinson wrote: On 17/07/12 16:24, Venkat

Re: No source code is available problem for my server side code while testing

2012-07-17 Thread Venkat
I did that, but some of the jars from SmartGWT are not getting inherited. and I don't know what are those classes modules are, so that I can inherit that. I tried giving the classes directly with the package structure, but it is changing it to module and saying it does not exist. On Tuesday,

Re: No source code is available problem for my server side code while testing

2012-07-17 Thread Paul Robinson
Not as far as I know, but then why would you want to? You should only import the modules you need, otherwise I imagine the compile will take longer. Some google modules import other google modules, so you don't need to add an inherit for literally every one. Paul On 17/07/12 17:26, Venkat

Re: No source code is available problem for my server side code while testing

2012-07-17 Thread Venkat
I mean I was just trying and the classes that it told me to inherit, I don't know the module for those classes. I am waiting for reply from SmartGWT forum, man these guys does not reply at all, these guys suck. GWT forum is bang on target, I really like it. Thanks for your support. On Tuesday,

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

No source code is available

2011-11-17 Thread learning coding
Hi.. I am usning some external jar files on the server side of web application. when i run the application it gives an error for all the external jar files which i used on the server side. [ERROR]No source code is available for type ... did you forget to inherit a required module? how

Re: No source code is available

2011-11-17 Thread Juan Pablo Gardella
the external jar files which i used on the server side. [ERROR]No source code is available for type ... did you forget to inherit a required module? how to solve this error? Plz help. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post

Re: No source code is available

2011-11-17 Thread learning coding
it gives an error for all the external jar files which i used on the server side. [ERROR]No source code is available for type ...  did you forget to inherit a required module? how to solve this error? Plz help. -- You received this message because you are subscribed to the Google Groups

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

No source code is available

2011-11-15 Thread learning coding
Hi all I am getting many error like this when i tried to run my RPC project No source is available for type org.gwtcmis.model.restatom.AtomEntry; did you forget to inherit a required module? How to solve it?? Thanks in Advance -- You received this message because you are subscribed to the

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

Re: How exclude attribute can resolve No source code is available issue?

2011-09-23 Thread Thomas Broyer
On Friday, September 23, 2011 12:38:36 AM UTC+2, Richard wrote: Thanks for the reply. I read the link but still do not get it. Does exclude attribute exclude files match the pattern or exclude the file from the compile list? What I want is to tell gwtc to *ignore* XmlAdapter or

Re: How exclude attribute can resolve No source code is available issue?

2011-09-23 Thread Alexandre Dupriez
You cannot exclude XmlAdapter or Unmarshaller if they are transitively refereed to in your client code (ie, if a class in your client code depends on it), since, as you might guess, every classes in your graph hierarchy must be translatable in JavaScript on client side. However, to ignore a class

Re: How exclude attribute can resolve No source code is available issue?

2011-09-23 Thread Richard
Yes, that is my workaround. :-) But it is a hack, we want to have a *proper* way to fix it. On Sep 23, 4:05 am, Thomas Broyer t.bro...@gmail.com wrote: On Friday, September 23, 2011 12:38:36 AM UTC+2, Richard wrote: Thanks for the reply. I read the link but still do not get it. Does

Re: How exclude attribute can resolve No source code is available issue?

2011-09-23 Thread Richard
Could you clarify your example? For example, Let's say I have com.test.gwt_client.Client.java which refers javax.xml.bind.Unmarshaller, but Unmarshaller is *NOT* really used - it only exists in method signature. What does XML look like? source path=bind   exclude name=Unmarshaller.java/

Re: How exclude attribute can resolve No source code is available issue?

2011-09-23 Thread Alexandre Dupriez
See my last answer. If the class is in your method signature, and thus your code contains a reference to it, you cannot get rid of the class with an exclude. This directive works only if you want to ignore classes which are on the path of the client side of the application (ie translated in JS)

Re: How exclude attribute can resolve No source code is available issue?

2011-09-23 Thread Richard
Got it. Thanks very much! On Sep 23, 3:54 pm, Alexandre Dupriez alexandre.dupr...@gmail.com wrote: See my last answer. If the class is in your method signature, and thus your code contains a reference to it, you cannot get rid of the class with an exclude. This directive works only if you

How exclude attribute can resolve No source code is available issue?

2011-09-22 Thread Richard
Hi, I have model classes shared by server side and client side, so I can not remove JAXB, JPA etc annotations and class. By either including source code (in an extra jar) or binary jar file has compiled class files, the No source code is available issue can be resolved for *most* of classes like

Re: How exclude attribute can resolve No source code is available issue?

2011-09-22 Thread Thomas Broyer
See http://code.google.com/webtoolkit/doc/latest/DevGuideOrganizingProjects.html#DevGuidePathFiltering (and there was examples linked from the issue; AntLR.gwt.xml for instance) -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view

Re: How exclude attribute can resolve No source code is available issue?

2011-09-22 Thread Richard
Thanks for the reply. I read the link but still do not get it. Does exclude attribute exclude files match the pattern or exclude the file from the compile list? What I want is to tell gwtc to *ignore* XmlAdapter or Unmarshaller even they are referenced in the code. BTW, I could not find the

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

  1   2   3   >