ts-jsdk
Version:
TypeScript implementation of the Java platform
17 lines (16 loc) • 534 B
TypeScript
import { JMenuBar } from "./JMenuBar";
import { JPanel } from "./JPanel";
import { JWindow } from "../awt/JWindow";
export declare class JFrame extends JWindow {
protected name: string;
static readonly SHORT_DESCRIPTION = "SHORT_DESCRIPTION";
contents: any;
private values;
private menuBar;
constructor(name: string);
putValue(key: string, value: any): void;
getValue(key: string): any;
setJMenuBar(menuBar: JMenuBar): void;
getJMenuBar(): JMenuBar | undefined;
getContentPane(): JPanel;
}