Reputation: 1
I am trying to work with icefaces3. I made some examples and they perfectly work, but when I try some examples from
http://icefaces-showcase.icesoft.org/showcase.jsf?grp=compatMenu&exp=menuBar
I get errors in:
import org.icefaces.samples.showcase.metadata.annotation.ComponentExample;
import org.icefaces.samples.showcase.metadata.annotation.ExampleResource;
import org.icefaces.samples.showcase.metadata.annotation.ExampleResources;
import org.icefaces.samples.showcase.metadata.annotation.Menu;
import org.icefaces.samples.showcase.metadata.annotation.MenuLink;
import org.icefaces.samples.showcase.metadata.annotation.ResourceType;
import org.icefaces.samples.showcase.metadata.context.ComponentExampleImpl;
Eclipse can find these classes instead the necessary jars are automatically added to my project.
There are icefaces jars shown in package Explorer (which are automatically added by eclipse).
icefaces.jar
commons-logging.jar
icefaces-compat.jar
jxl.jar
krysalis-jCharts-1.0.0-alpha-1.jar
icefaces-ace.jar
icepush.jar
Please how can I solve this problem?
Upvotes: 0
Views: 1363
Reputation: 3509
You don't need any of these classes. Remove all showcases annotations like @ComponentExample, @ExampleResources and @Menu. These annotations are just needed for icefaces showcase portal. Not very well done by icefaces...
Upvotes: 2