?? logarithmic.java
字號:
/**
* The file is generated by BorlandXML.
*/
package com.prudsys.pdm.Adapters.PmmlVersion20;
/**
* The Logarithmic class represents the element "Logarithmic" with the content
* model defined as follows:
* <p>
* <!ELEMENT Logarithmic EMPTY><br>
*/
public class Logarithmic extends com.borland.xml.toolkit.EmptyElement
{
/** xml tag name of this element. */
public static String _tagName = "Logarithmic";
/** Defines a field attribute */
public com.borland.xml.toolkit.Attribute field = new com.borland.xml.toolkit.Attribute("field", "CDATA", "REQUIRED", "");
/**
* Creates an empty Logarithmic object.
*/
public Logarithmic()
{
super();
}
/**
* Creates a Logarithmic object with the specified state.
* @param state boolean value
*/
public Logarithmic(boolean state)
{
super(state);
}
/**
* Gets the value of "field" attribute.
*/
public String getField()
{
return field.getValue();
}
/**
* Replaces the existing attribute value with a new value.
* @param value New value.
*/
public void setField(String value_)
{
field.setValue(value_ );
}
/**
* Marshals this object to an element.
*/
public com.borland.xml.toolkit.Element marshal()
{
com.borland.xml.toolkit.Element elem = super.marshal();
/** Marshals "field" attribute */
elem.addAttribute(field.marshal());
return elem;
}
/**
* Unmarshals the specified "Logarithmic" element back to a Logarithmic object.
*/
public static Logarithmic unmarshal(com.borland.xml.toolkit.Element elem)
{
Logarithmic __objLogarithmic = (Logarithmic)com.borland.xml.toolkit.EmptyElement.unmarshal(elem, new Logarithmic());
if( __objLogarithmic != null ) //found the element?
{
/** Unmarshals "field" attribute */
__objLogarithmic.field.setValue(elem.getAttribute("field"));
}
return __objLogarithmic;
}
/**
* Validates this object. If you pass <code>true</code> to this method, it
* checks for the first error and stops. On the other hand, if you pass
* <code>false</code> to this method, it collects all the errors by
* visiting every available elements.
* @param firstError <code>true</code> to exit this method when the first error
* is found; <code>false</code> to collect all errors.
* @return com.borland.xml.toolkit.ErrorList A list that contains one or more errors.
* @see com.borland.xml.toolkit.XmlObject#validate()
* @see com.borland.xml.toolkit.XmlObject#isValid()
* @see com.borland.xml.toolkit.ErrorList
*/
public com.borland.xml.toolkit.ErrorList validate(boolean firstError)
{
com.borland.xml.toolkit.ErrorList errors = new com.borland.xml.toolkit.ErrorList();
return errors.size()==0 ? null : errors;
}
/**
* Gets the tag name of this element.
*/
public String get_TagName()
{
return _tagName;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -