File: TextFileReader.java

package info (click to toggle)
imagej 1.52j-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 5,604 kB
  • sloc: java: 120,017; sh: 279; xml: 161; makefile: 6
file content (18 lines) | stat: -rw-r--r-- 339 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package ij.plugin;

//import java.awt.*;
//import java.awt.image.*;
//import java.io.*;
import ij.*;
//import ij.io.*;
//import ij.process.*;


/** This plugin displays the contents of a text file in a window. */
public class TextFileReader implements PlugIn {
	
	public void run(String arg) {
		new ij.text.TextWindow(arg,400,450);
	}

}