package baf.sci;

import com.sun.java.swing.JTextArea;

public class TextResource extends Resource {
  public TextResource(byte b[], int resnum) {
    super(b, TEXT, resnum);
  }

  public java.awt.Component makeViewer() {
    String s = new String(b).replace('\0', '\n');
    JTextArea ta = new JTextArea(s);
    ta.setEditable(false);
    return ta;
  }

}
