annotation.java

来自「一个数据挖掘软件ALPHAMINERR的整个过程的JAVA版源代码」· Java 代码 · 共 58 行

JAVA
58
字号
/**
 * This file is generated by BorlandXML.
 */

package com.prudsys.pdm.Adapters.PmmlVersion20;

/**
 * The Annotation class represents the element "Annotation" with the content
 * model defined as follows:
 * <p>
 * &lt;!ELEMENT Annotation (#PCDATA)&gt;<br>
 */
public class Annotation extends com.borland.xml.toolkit.TextElement 
{
	/**
	 * 
	 */
	private static final long serialVersionUID = 1L;
	/** xml tag name of this element. */
	public static String _tagName = "Annotation";

	/**
	 * Creates an empty Annotation object.
	 */
	public Annotation()
	{
		super();
	}

	/**
	 * Creates a Annotation object with the specified text.
	 */
	public Annotation(String text)
	{
		super(text);
	}


	/**
	 * Unmarshals the specified "Annotation" element back to a Annotation object.
	 */
	public static Annotation unmarshal(com.borland.xml.toolkit.Element elem)
	{
		Annotation __objAnnotation = (Annotation)com.borland.xml.toolkit.TextElement.unmarshal(elem, new Annotation());
		return __objAnnotation;
	}



	/**
	 * Gets the tag name of this element.
	 */
	public String get_TagName()
	{
		return _tagName;
	}
}

⌨️ 快捷键说明

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