File: MyFile.java

package info (click to toggle)
entagged 0.35-4
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, wheezy
  • size: 8,332 kB
  • ctags: 4,668
  • sloc: java: 26,754; php: 1,417; xml: 1,211; sh: 42; makefile: 24
file content (29 lines) | stat: -rwxr-xr-x 560 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/*
 * Created on 9 mars 2005
 *
 * TODO To change the template for this generated file go to
 * Window - Preferences - Java - Code Style - Code Templates
 */
package miage.jtreeindex;

import java.io.File;

/**
 * @author G909248
 *
 * TODO To change the template for this generated type comment go to
 * Window - Preferences - Java - Code Style - Code Templates
 */
public class MyFile extends File {

	/**
	 * @param arg0
	 */
	public MyFile(String arg0) {
		super(arg0);
	}

	public String toString() {
		return getName();
	}
}