//
//  iLabel.java
//  iWidgets
//
//  Created by Simon Urbanek on Wed Jul 21 2004.
//  Copyright (c) 2004 Simon Urbanek. All rights reserved.
//
//  $Id$

package org.rosuda.iWidgets;

import javax.swing.*;

public class iLabel extends JLabel {
    public iLabel(String text) {
        super(text);
    }
}
