- java.lang.Object
-
- javax.xml.bind.helpers.ValidationEventImpl
-
- javax.xml.bind.helpers.PrintConversionEventImpl
-
- All Implemented Interfaces:
-
PrintConversionEvent
,ValidationEvent
public class PrintConversionEventImpl extends ValidationEventImpl implements PrintConversionEvent
PrintConversionEvent接口的默认实现。允许JAXB提供者使用任何实现ValidationEvent接口的类。 这个课程只是为了方便起见。
- 从以下版本开始:
- 1.6,JAXB 1.0
- 另请参见:
-
PrintConversionEvent
,Validator
,ValidationEventHandler
,ValidationEvent
,ValidationEventLocator
-
-
Field Summary
-
Fields inherited from interface javax.xml.bind.ValidationEvent
ERROR, FATAL_ERROR, WARNING
-
-
构造方法摘要
构造方法 Constructor 描述 PrintConversionEventImpl(int _severity, String _message, ValidationEventLocator _locator)
创建一个新的PrintConversionEventImpl。PrintConversionEventImpl(int _severity, String _message, ValidationEventLocator _locator, Throwable _linkedException)
创建一个新的PrintConversionEventImpl。
-
方法摘要
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface javax.xml.bind.ValidationEvent
getLinkedException, getLocator, getMessage, getSeverity
-
Methods inherited from class javax.xml.bind.helpers.ValidationEventImpl
getLinkedException, getLocator, getMessage, getSeverity, setLinkedException, setLocator, setMessage, setSeverity, toString
-
-
-
-
构造方法详细信息
-
PrintConversionEventImpl
public PrintConversionEventImpl(int _severity, String _message, ValidationEventLocator _locator)
创建一个新的PrintConversionEventImpl。- 参数
-
_severity
- 此事件的严重性值。 必须是ValidationEvent.WARNING,ValidationEvent.ERROR或ValidationEvent.FATAL_ERROR之一 -
_message
- 此事件的文本消息可能为null。 -
_locator
- 此事件的定位器对象可能为null。 - 异常
-
IllegalArgumentException
- 如果提供了非法严重性字段
-
PrintConversionEventImpl
public PrintConversionEventImpl(int _severity, String _message, ValidationEventLocator _locator, Throwable _linkedException)
创建一个新的PrintConversionEventImpl。- 参数
-
_severity
- 此事件的严重性值。 必须是ValidationEvent.WARNING,ValidationEvent.ERROR或ValidationEvent.FATAL_ERROR之一 -
_message
- 此事件的短信可能为空。 -
_locator
- 此事件的定位器对象可以为null。 -
_linkedException
- 可能提供有关事件的附加信息的可选链接异常可能为null。 - 异常
-
IllegalArgumentException
- 如果提供了非法严重性字段
-
-