false.java

来自「为了下东西 随便发了个 datamining 的源代码」· Java 代码 · 共 55 行

JAVA
55
字号
/**
 * The file is generated by BorlandXML.
 */

package com.prudsys.pdm.Adapters.PmmlVersion20;

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

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

	/**
	 * Creates a False object with the specified state.
	 * @param state	boolean value
	 */
	public False(boolean state)
	{
		super(state);
	}


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



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

⌨️ 快捷键说明

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