mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-10 15:51:01 +00:00
22 lines
267 B
Java
Vendored
22 lines
267 B
Java
Vendored
// FILE: Frame.java
|
|
package awt;
|
|
|
|
public class Frame {
|
|
|
|
String accessibleContext = null;
|
|
|
|
}
|
|
|
|
// FILE: JFrame.java
|
|
package test;
|
|
|
|
import awt.Frame;
|
|
|
|
public class JFrame extends Frame {
|
|
public JFrame() {
|
|
}
|
|
|
|
protected String accessibleContext = null;
|
|
}
|
|
|