IDEA如何将类绑定到.form文件? [英] How does IDEA bind classes to .form files?

查看:1031
本文介绍了IDEA如何将类绑定到.form文件?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

Intellij IDEA有一个功能,您可以将表单文件绑定到类。




Intellij IDEA has a feature where you can bind form files to a class.

https://www.jetbrains.com/help/idea/binding-a-form-to-a-new-class.html

The "linked" class has the corresponding items lke JPanels etc. as private references but they are never set to anything.

Example:

public class Formtest{
    private JPanel panel1;
    private JLabel label1;
    ....
}

I was wondering how exactly this works at run time, and how exactly they get matched together .

解决方案

There is an option for the gui designer to generate initialization code inside the source file, you can enable it to see how exactly it works and what code is generated by the IDE, otherwise this code is not present in the .java file and is instrumented only into bytecode when you compile the project using IntelliJ IDEA or javac2 Ant task.

这篇关于IDEA如何将类绑定到.form文件?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆