Important Notice - Forums is archived
To simplify things and help our users to be more productive, we have archived the current forum and focus our efforts on helping developers on Stack Overflow. You can post new questions on Stack Overflow or join our Discord channel.

TUTORIALVaadin lets you build secure, UX-first PWAs entirely in Java.
Vaadin lets you build secure, UX-first PWAs entirely in Java.
Free ebook & tutorial.
Calling javascript synchronously by Enver Haase, 3 weeks ago
strange build classes
What is the reason Eclipse has two java classes four times in build / classes folder - like this:
AutoparaatiApplication.class
AutoparaatiApplication$1.class
AutoparaatiApplication$2.class
AutoparaatiApplication$3.class
ComboView.Class
ComboView$1.Class
ComboView$2.Class
ComboView$3.Class
How to avoid it?
All other classes are only once.
Tapani
Last updated on
Your AutoparaatiApplication and ComboView classes contain anonymous inner classes.
For example, the following ClickListener is an anonymous inner class:
button.addListener(new ClickListener() {
public void buttonClick(ClickEvent event) {
System.out.println("Button clicked!");
}
});
-Henri
Last updated on
You cannot reply to this thread.