I have a class:
public class ANote extends JDialog{...}
In GNOME(Linux) it shows an entry in the gnome-panel. I want it to show nothing (under Windows the instances of JDialog show nothing in the Windows taskbar), because there may be present several instances of the class simultaneously, and this overcrowds the gnome-panel.
How do I prevent it from showing an instance in the gnome-panel?
EDIT: So far I have tried playing with the modality, which hides it from the gnome-panel, but blocks the main frame of the application behind the ANote instances.
EDIT2 - edited the post for clarity