001: package java.io;
002:
003: import java.net.MalformedURLException;
004: import java.net.URI;
005: import java.net.URISyntaxException;
006: import java.net.URL;
007:
008: public class File implements Serializable, Comparable {
009: public static final String separator = System
010: .getProperty("file.separator");
011: public static final char separatorChar = separator.charAt(0);
012: public static final String pathSeparator = System
013: .getProperty("path.separator");
014: public static final char pathSeparatorChar = pathSeparator
015: .charAt(0);
016:
017: public boolean canRead() {
018: }
019:
020: public boolean canWrite() {
021: }
022:
023: public boolean createNewFile() throws IOException {
024: }
025:
026: public synchronized boolean delete() {
027: }
028:
029: public boolean equals(Object obj) {
030: }
031:
032: public boolean exists() {
033: }
034:
035: public File(String name) {
036: }
037:
038: private String normalizePath(String p) {
039: }
040:
041: public File(String dirPath, String name) {
042: }
043:
044: public File(File directory, String name) {
045: }
046:
047: public File(URI uri) {
048: }
049:
050: public String getAbsolutePath() {
051: }
052:
053: public File getAbsoluteFile() {
054: }
055:
056: public String getCanonicalPath() throws IOException {
057: }
058:
059: public File getCanonicalFile() throws IOException {
060: }
061:
062: public String getName() {
063: }
064:
065: public String getParent() {
066: }
067:
068: public File getParentFile() {
069: }
070:
071: public String getPath() {
072: }
073:
074: public int hashCode() {
075: }
076:
077: public boolean isAbsolute() {
078: }
079:
080: public boolean isDirectory() {
081: }
082:
083: public boolean isFile() {
084: }
085:
086: public boolean isHidden() {
087: }
088:
089: public long lastModified() {
090: }
091:
092: public long length() {
093: }
094:
095: public String[] list(FilenameFilter filter) {
096: }
097:
098: public String[] list() {
099: }
100:
101: public File[] listFiles() {
102: }
103:
104: public File[] listFiles(FilenameFilter filter) {
105: }
106:
107: public File[] listFiles(FileFilter filter) {
108: }
109:
110: public String toString() {
111: }
112:
113: public URI toURI() {
114: }
115:
116: public URL toURL() throws MalformedURLException {
117: }
118:
119: public boolean mkdir() {
120: }
121:
122: public boolean mkdirs() {
123: }
124:
125: public static File createTempFile(String prefix, String suffix,
126: File directory) throws IOException {
127: }
128:
129: public boolean setReadOnly() {
130: }
131:
132: public static File[] listRoots() {
133: }
134:
135: public static File createTempFile(String prefix, String suffix)
136: throws IOException {
137: }
138:
139: public int compareTo(File other) {
140: }
141:
142: public int compareTo(Object obj) {
143: }
144:
145: public synchronized boolean renameTo(File dest) {
146: }
147:
148: public boolean setLastModified(long time) {
149: }
150:
151: private void checkWrite() {
152: }
153:
154: private void checkRead() {
155: }
156:
157: public void deleteOnExit() {
158: }
159:
160: private void writeObject(ObjectOutputStream oos) throws IOException {
161: }
162:
163: private void readObject(ObjectInputStream ois)
164: throws ClassNotFoundException, IOException {
165: }
166: }
|