I want tocatch when a user clicks the close button on a Frame HUD widget so I can setVisibility and NOT have the widget destroyed. Using the following I can see
my override method called but the associated Frame is still destroyed. Note I am not calling any super() here so I expected to isolate myself from the default closing behavior. Thoughts???
public class JournalPageHUD extends Frame implements WidgetActionListener,
WidgetStateListener, DialogListener, FrameListener{
public void onFrameClosed(Frame frame) {
// TODO Auto-generated method stub
System.out.println("fram close x");
}