Examples for JGoControl

Hi,

Are there any other samples codes that show how to use JGoControl beside the two included (classier and jtreeapp) . For example; a have a custom control that have the same behaviors as the JGoInstruments. Is this possible? Thanks!

No, those are the only 2 examples.

Before you go too far, let me just warn you that using JGoControl can be difficult and has some restrictions. For example, JGoControls are always in front of everything else displayed by the JGoView, the don't print, they don't scale well, and you need to worry about initializing them and handling focus issues. This is because the JGoControl is actually managing a separate JComponent that is kept in front of the current JGoView.
Using a more standard JGoNode may make your life easier in the long run.

Thank you.