-
-
Notifications
You must be signed in to change notification settings - Fork 265
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Add {FileAlreadyExists,NoSuchFile,NotADirectory}Exception. - Add OpenOption interface and StandardOpenOption enum.
- Loading branch information
Showing
5 changed files
with
128 additions
and
0 deletions.
There are no files selected for viewing
28 changes: 28 additions & 0 deletions
28
classlib/src/main/java/org/teavm/classlib/java/nio/file/TFileAlreadyExistsException.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
/* | ||
* Copyright 2023 Jonathan Coates. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package org.teavm.classlib.java.nio.file; | ||
|
||
public class TFileAlreadyExistsException extends TFileSystemException { | ||
private static final long serialVersionUID = -8210257702245084985L; | ||
|
||
public TFileAlreadyExistsException(String file) { | ||
super(file); | ||
} | ||
|
||
public TFileAlreadyExistsException(String file, String other, String reason) { | ||
super(file, other, reason); | ||
} | ||
} |
28 changes: 28 additions & 0 deletions
28
classlib/src/main/java/org/teavm/classlib/java/nio/file/TNoSuchFileException.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
/* | ||
* Copyright 2023 Jonathan Coates. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package org.teavm.classlib.java.nio.file; | ||
|
||
public class TNoSuchFileException extends TFileSystemException { | ||
private static final long serialVersionUID = -2724052005589959528L; | ||
|
||
public TNoSuchFileException(String file) { | ||
super(file); | ||
} | ||
|
||
public TNoSuchFileException(String file, String other, String reason) { | ||
super(file, other, reason); | ||
} | ||
} |
24 changes: 24 additions & 0 deletions
24
classlib/src/main/java/org/teavm/classlib/java/nio/file/TNotDirectoryException.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
/* | ||
* Copyright 2023 Jonathan Coates. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package org.teavm.classlib.java.nio.file; | ||
|
||
public class TNotDirectoryException extends TFileSystemException { | ||
private static final long serialVersionUID = 2268196534868848834L; | ||
|
||
public TNotDirectoryException(String file) { | ||
super(file); | ||
} | ||
} |
19 changes: 19 additions & 0 deletions
19
classlib/src/main/java/org/teavm/classlib/java/nio/file/TOpenOption.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
/* | ||
* Copyright 2023 Jonathan Coates. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package org.teavm.classlib.java.nio.file; | ||
|
||
public interface TOpenOption { | ||
} |
29 changes: 29 additions & 0 deletions
29
classlib/src/main/java/org/teavm/classlib/java/nio/file/TStandardOpenOption.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
/* | ||
* Copyright 2023 Jonathan Coates. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package org.teavm.classlib.java.nio.file; | ||
|
||
public enum TStandardOpenOption implements TOpenOption { | ||
READ, | ||
WRITE, | ||
APPEND, | ||
TRUNCATE_EXISTING, | ||
CREATE, | ||
CREATE_NEW, | ||
DELETE_ON_CLOSE, | ||
SPARSE, | ||
SYNC, | ||
DSYNC, | ||
} |