📄 annotation.java
字号:
/**
* 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>
* <!ELEMENT Annotation (#PCDATA)><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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -