Can any one help me find some code to start building an OutlookPanel?

public class OutlookPanel extends JPanel {
    public OutLookPanel() {
    }
    public OutLookPanel(Layout layout) {
        super(layout);
    }
    public OutLookPanel(boolean isDoubleBuffered) {
        super(isDoubleBuffered);
    }
    public OutLookPanel(Layout layout, boolean isDoubleBuffered) {
        super(layout, isDoubleBuffered);
    }
}
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.