📄 cityblock.java
字号:
/**
* The file is generated by BorlandXML.
*/
package com.prudsys.pdm.Adapters.PmmlVersion20;
/**
* The CityBlock class represents the element "cityBlock" with the content
* model defined as follows:
* <p>
* <!ELEMENT cityBlock EMPTY><br>
*/
public class CityBlock extends com.borland.xml.toolkit.EmptyElement
{
/** xml tag name of this element. */
public static String _tagName = "cityBlock";
/**
* Creates an empty CityBlock object.
*/
public CityBlock()
{
super();
}
/**
* Creates a CityBlock object with the specified state.
* @param state boolean value
*/
public CityBlock(boolean state)
{
super(state);
}
/**
* Unmarshals the specified "cityBlock" element back to a CityBlock object.
*/
public static CityBlock unmarshal(com.borland.xml.toolkit.Element elem)
{
CityBlock __objCityBlock = (CityBlock)com.borland.xml.toolkit.EmptyElement.unmarshal(elem, new CityBlock());
return __objCityBlock;
}
/**
* Gets the tag name of this element.
*/
public String get_TagName()
{
return _tagName;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -