import java.awt.*;
import java.awt.event.*;
import java.io.*;
import javax.swing.*;
import javax.swing.text.*;

/**
 * this is a Wedgi text area, it gets all its functionality
 * from JEditorPane
 *
 * @author Owen Astrachan
 * @see JEditorPane
 */
 
public class WedgiText extends JEditorPane
{

    /**
     * bind the constructed object to a controller
     * @param source, the source of the text, file or http URL in
     * this app
     */
    public WedgiText(String source) throws IOException
    {
	super(source);
	setEditable(false);
    }
}
