📄 form.java
字号:
// Form.java// $Id: Form.java,v 1.3 2000/08/16 21:37:49 ylafon Exp $// (c) COPYRIGHT MIT and INRIA, 1996.// Please first read the full copyright statement in file COPYRIGHT.htmlpackage org.w3c.tools.forms ;public class Form { /** * The handler of the form. */ protected FormHandlerInterface handler = null ; /** * Register a new form field. * @param name The name of the field to be defined. * @param title Title of the field to be defined. * @param field The field editor. */ public void addField (String name, String title, FormField field) { } public Form(FormHandlerInterface handler) { this.handler = handler ; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -