?? no.java
字號:
package org.enhydra.shark.xpdl.elements;import org.enhydra.shark.xpdl.XMLComplexElement;/** * Represents coresponding element from XPDL schema. * * @author Sasa Bojanic */public class No extends XMLComplexElement { public No (ImplementationTypes parent) { super(parent, true); } /** * Overrides super-class method to indicate that this element * is never empty, so it's tag will always be written into * XML file. * * @return <tt>false</tt> */ public boolean isEmpty() { return false; } protected void fillStructure () {}}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -