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

📄 typeconverter.java

📁 jConfig,JAVA读取XML的开源项目
💻 JAVA
字号:
/*
 * TypeConverter.java
 *
 * Created on 28. September 2004, 13:12
 */

package org.jconfig.utils.editors;

/**
 * This interface defines the methods that must be implemented by every
 * type converter. These converters are used by the CategoryBeanMapper.
 *
 * @author  Andreas Mecky andreasmecky@yahoo.de
 * @author  Terry Dye terrydye@yahoo.com
 */
public interface TypeConverter {
 
    /**
     * Converts the given String value to an object that can be passed
     * to a set method using reflection
     *
     * @param value the value as String
     * @return the object 
     */
    public Object getObject(String value);
}

⌨️ 快捷键说明

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