Now we create a manager view to display the contents of the manager. A manager view is an instance of the IlvManagerView class. To associate it with the manager, all you have to do is provide the manager parameter as shown below.
| Note |
In this example, we use the class IlvJScrollManagerView. This class encapsulates the class IlvManagerView and provides scroll bars.
|
mgrview = new IlvManagerView(manager);
getContentPane().setLayout(new BorderLayout(0,0));
getContentPane().add(new IlvJScrollManagerView(mgrview), BorderLayout.CENTER);