schematype.java
来自「Xfire文件 用于开发web service 的一个开源工具 很好用的」· Java 代码 · 共 57 行
JAVA
57 行
package org.codehaus.xfire.wsdl;import java.util.Set;import javax.xml.namespace.QName;import org.jdom.Element;/** * An XSD type. * * @author <a href="mailto:dan@envoisolutions.com">Dan Diephouse</a> */public interface SchemaType{ /** * Whether or not this a complex type. If true then * the schema for this type is written out. * * @return */ boolean isComplex(); /** * Whether or not this a complexType or a concrete element. * * @return */ boolean isAbstract(); boolean isNillable(); /** * The <code>SchemaType</code>s that this type references. * * @return */ Set getDependencies(); /** * Write the type schema (if complex) to the element. * * @param element */ void writeSchema( Element element ); /** * The schema type that this SchemaType represents. * * @return */ QName getSchemaType(); boolean isWriteOuter();}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?