Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Weird error from the Eclipse GWT plugin when having a separate source folder for resources

I have an Eclipse GWT project with two source folders: One for source code and one for resources. This should and does work fine, but nevertheless Eclipse shows the following error message:

Resource file style.css is missing (expected at com.example.gwt.client)

If have the a class Resources in my source code source folder:

package com.example.gwt.client;

import com.google.gwt.resources.client.*;

interface Resources extends ClientBundle {
    @Source("style.css")
    Style style();
}

The references CSS file is in the same package in the source folder I use for resources.

It's not really a problem, since it definitely works, but I would like to get rid of the error message in any case, it's making me nervous. Any ideas?

like image 563
futlib Avatar asked Feb 27 '11 06:02

futlib


1 Answers

See this GWT issue. Configure the resources folder as a source folder in Eclipse and the errors in the editor will go away.

like image 68
Jason Terk Avatar answered Nov 04 '22 02:11

Jason Terk