Skip to content

Commit e5bf29f

Browse files
Googlercopybara-github
authored andcommitted
[J2KT] Add j2kt/VisibilityModifiers.java readable.
PiperOrigin-RevId: 888128422
1 parent 544fff9 commit e5bf29f

File tree

2 files changed

+58
-0
lines changed

2 files changed

+58
-0
lines changed
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
/*
2+
* Copyright 2026 Google Inc.
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* https://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
16+
package j2kt;
17+
18+
public final class VisibilityModifiers {
19+
public static class Public {}
20+
21+
static class PackagePrivate {}
22+
23+
protected static class Protected {}
24+
25+
private static class Private {}
26+
}
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
// Generated from "j2kt/VisibilityModifiers.java"
2+
@file:Suppress(
3+
"ALWAYS_NULL",
4+
"PARAMETER_NAME_CHANGED_ON_OVERRIDE",
5+
"SENSELESS_COMPARISON",
6+
"UNCHECKED_CAST",
7+
"UNNECESSARY_LATEINIT",
8+
"UNNECESSARY_NOT_NULL_ASSERTION",
9+
"UNREACHABLE_CODE",
10+
"UNUSED_ANONYMOUS_PARAMETER",
11+
"UNUSED_PARAMETER",
12+
"UNUSED_VARIABLE",
13+
"USELESS_CAST",
14+
"VARIABLE_IN_SINGLETON_WITHOUT_THREAD_LOCAL",
15+
"VARIABLE_WITH_REDUNDANT_INITIALIZER",
16+
"REDUNDANT_ELSE_IN_WHEN",
17+
"ACCIDENTAL_OVERRIDE")
18+
19+
package j2kt
20+
21+
import javaemul.lang.*
22+
import kotlin.Suppress
23+
24+
class VisibilityModifiers {
25+
open class Public
26+
27+
open class PackagePrivate internal constructor()
28+
29+
open class Protected
30+
31+
open class Private internal constructor()
32+
}

0 commit comments

Comments
 (0)