⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 typemapping.java

📁 Xfire文件 用于开发web service 的一个开源工具 很好用的
💻 JAVA
字号:
package org.codehaus.xfire.aegis.type;import javax.xml.namespace.QName;/** * @author <a href="mailto:dan@envoisolutions.com">Dan Diephouse</a> * @since Feb 18, 2004 */public interface TypeMapping{    /**     * Checks whether or not type mapping between specified XML     * type and Java type is registered.     *     * @param javaType Class of the Java type     * @param xmlType Qualified name of the XML data type     * @return boolean; <code>true</code> if type mapping between the     *      specified XML type and Java type is registered;     *      otherwise <code>false</code>     */    public boolean isRegistered(Class javaType);    public boolean isRegistered(QName xmlType);    public void register(Class javaType, QName xmlType, Type type);    public void register(Type type);    public void removeType(Type type);    public Type getType(Class javaType);    public Type getType(QName xmlType);    public QName getTypeQName(Class clazz);    public String getEncodingStyleURI();    public void setEncodingStyleURI(String encodingStyleURI);        public TypeCreator getTypeCreator();}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -