谁能帮我使用下面的java代码编写php代码。
我撞到了某个地方,我有很多问题:
如何在php中编写java JFrame、BorderLayout、setJMenuBar、setVisible。
// init the frame
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
this.setLayout(new BorderLayout());
this.setSize(600, 400);
// set MenuBar
this.setJMenuBar(getApplicationMenuBar());
// set ProgressBar
this.add(getApplicationProgressBar(), BorderLayout.SOUTH);
// set InfoPane
this.add(getInfoPane(), BorderLayout.WEST);
// set frame to visible
this.setVisible(true);
请帮助我。
提前致谢。