📄 nativedefinition.java
字号:
/* NativeDefinition.java{{IS_NOTE Purpose: Description: History: Thu Aug 16 12:33:49 2007, Created by tomyeh}}IS_NOTECopyright (C) 2007 Potix Corporation. All Rights Reserved.{{IS_RIGHT This program is distributed under GPL Version 2.0 in the hope that it will be useful, but WITHOUT ANY WARRANTY.}}IS_RIGHT*/package org.zkoss.zk.ui.metainfo.impl;import org.zkoss.zk.ui.metainfo.*;/** * The component definition for the native components. * It is used to implement the native namespace * * @author tomyeh * @since 3.0.0 * @see ComponentDefinitionImpl#newNativeDefinition *//*package*/ class NativeDefinition extends ComponentDefinitionImpl { /*package*/ NativeDefinition(LanguageDefinition langdef, String name, Class cls) { super(langdef, null, name, cls); if (cls == null) throw new IllegalArgumentException("null"); } public boolean isNative() { return true; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -