📄 nodebook.java
字号:
/*
* This class was automatically generated with
* <a href="http://www.castor.org">Castor 0.9.5.2</a>, using an XML
* Schema.
* $Id$
*/
package com.liuyang.ejb.cmp.node.data;
//---------------------------------/
//- Imported classes and packages -/
//---------------------------------/
import java.io.IOException;
import java.io.Reader;
import java.io.Serializable;
import java.io.Writer;
import java.util.Date;
import org.exolab.castor.xml.MarshalException;
import org.exolab.castor.xml.Marshaller;
import org.exolab.castor.xml.Unmarshaller;
import org.exolab.castor.xml.ValidationException;
import org.xml.sax.ContentHandler;
/**
* Class NodeBook.
*
* @version $Revision$ $Date$
*/
public class NodeBook implements java.io.Serializable {
//--------------------------/
//- Class/Member Variables -/
//--------------------------/
/**
* Field _title
*/
private java.lang.String _title;
/**
* Field _text
*/
private java.lang.String _text;
/**
* Field _date
*/
private java.util.Date _date;
//----------------/
//- Constructors -/
//----------------/
public NodeBook() {
super();
} //-- com.liuyang.ejb.cmp.node.data.NodeBook()
//-----------/
//- Methods -/
//-----------/
/**
* Returns the value of field 'date'.
*
* @return the value of field 'date'.
*/
public java.util.Date getDate()
{
return this._date;
} //-- java.util.Date getDate()
/**
* Returns the value of field 'text'.
*
* @return the value of field 'text'.
*/
public java.lang.String getText()
{
return this._text;
} //-- java.lang.String getText()
/**
* Returns the value of field 'title'.
*
* @return the value of field 'title'.
*/
public java.lang.String getTitle()
{
return this._title;
} //-- java.lang.String getTitle()
/**
* Method isValid
*/
public boolean isValid()
{
try {
validate();
}
catch (org.exolab.castor.xml.ValidationException vex) {
return false;
}
return true;
} //-- boolean isValid()
/**
* Method marshal
*
* @param out
*/
public void marshal(java.io.Writer out)
throws org.exolab.castor.xml.MarshalException, org.exolab.castor.xml.ValidationException
{
Marshaller.marshal(this, out);
} //-- void marshal(java.io.Writer)
/**
* Method marshal
*
* @param handler
*/
public void marshal(org.xml.sax.ContentHandler handler)
throws java.io.IOException, org.exolab.castor.xml.MarshalException, org.exolab.castor.xml.ValidationException
{
Marshaller.marshal(this, handler);
} //-- void marshal(org.xml.sax.ContentHandler)
/**
* Sets the value of field 'date'.
*
* @param date the value of field 'date'.
*/
public void setDate(java.util.Date date)
{
this._date = date;
} //-- void setDate(java.util.Date)
/**
* Sets the value of field 'text'.
*
* @param text the value of field 'text'.
*/
public void setText(java.lang.String text)
{
this._text = text;
} //-- void setText(java.lang.String)
/**
* Sets the value of field 'title'.
*
* @param title the value of field 'title'.
*/
public void setTitle(java.lang.String title)
{
this._title = title;
} //-- void setTitle(java.lang.String)
/**
* Method unmarshal
*
* @param reader
*/
public static java.lang.Object unmarshal(java.io.Reader reader)
throws org.exolab.castor.xml.MarshalException, org.exolab.castor.xml.ValidationException
{
return (com.liuyang.ejb.cmp.node.data.NodeBook) Unmarshaller.unmarshal(com.liuyang.ejb.cmp.node.data.NodeBook.class, reader);
} //-- java.lang.Object unmarshal(java.io.Reader)
/**
* Method validate
*/
public void validate()
throws org.exolab.castor.xml.ValidationException
{
org.exolab.castor.xml.Validator validator = new org.exolab.castor.xml.Validator();
validator.validate(this);
} //-- void validate()
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -