The Essential JViews Framework > Getting Started with JViews Framework > Step 1 - The Manager > Creating the Frame Class

You are now able to create the class named Sample1. This class has two fields, manager (class IlvManager) to store the graphic objects, and mgrview, (class IlvManagerView), to display the contents of the manager.

public class Sample1 extends JFrame
{ 
  IlvManager manager; 
  IlvManagerView mgrview;
  ....
}