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

📄 exceptiontextparser.java

📁 world wind java sdk 源码
💻 JAVA
字号:
/*
Copyright (C) 2001, 2008 United States Government as represented by
the Administrator of the National Aeronautics and Space Administration.
All Rights Reserved.
*/
package gov.nasa.worldwind.applications.gio.ows;

import gov.nasa.worldwind.applications.gio.xml.TextElementParser;

/**
 * @author dcollins
 * @version $Id: ExceptionTextParser.java 5517 2008-07-15 23:36:34Z dcollins $
 */
public class ExceptionTextParser extends TextElementParser implements ExceptionText
{
    public static final String ELEMENT_NAME = "ExceptionText";
    
    public ExceptionTextParser(String elementName, org.xml.sax.Attributes attributes)
    {
        super(elementName, attributes);
    }

    public String getText()
    {
        return getValue();
    }

    public void setText(String text)
    {
        setValue(text);
    }
}

⌨️ 快捷键说明

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