true.java
来自「一个数据挖掘软件ALPHAMINERR的整个过程的JAVA版源代码」· Java 代码 · 共 55 行
JAVA
55 行
/**
* The file is generated by BorlandXML.
*/
package com.prudsys.pdm.Adapters.PmmlVersion20;
/**
* The True class represents the element "True" with the content
* model defined as follows:
* <p>
* <!ELEMENT True EMPTY><br>
*/
public class True extends com.borland.xml.toolkit.EmptyElement
{
/** xml tag name of this element. */
public static String _tagName = "True";
/**
* Creates an empty True object.
*/
public True()
{
super();
}
/**
* Creates a True object with the specified state.
* @param state boolean value
*/
public True(boolean state)
{
super(state);
}
/**
* Unmarshals the specified "True" element back to a True object.
*/
public static True unmarshal(com.borland.xml.toolkit.Element elem)
{
True __objTrue = (True)com.borland.xml.toolkit.EmptyElement.unmarshal(elem, new True());
return __objTrue;
}
/**
* Gets the tag name of this element.
*/
public String get_TagName()
{
return _tagName;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?