timestamp.java

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

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

package com.prudsys.pdm.Adapters.PmmlVersion20;

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

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

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


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



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

⌨️ 快捷键说明

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