📄 afterdelete.java
字号:
/*
* This class was automatically generated with
* <a href="http://www.castor.org">Castor 0.9.7</a>, using an XML
* Schema.
* $Id$
*/
package com.queplix.core.jxb.entity;
//---------------------------------/
//- Imported classes and packages -/
//---------------------------------/
import java.io.IOException;
import java.io.Reader;
import java.io.Serializable;
import java.io.Writer;
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;
/**
* Script which executes after delete operation
*
* @version $Revision$ $Date$
*/
public class Afterdelete extends com.queplix.core.utils.jxb.JXBObject
implements java.io.Serializable
{
//--------------------------/
//- Class/Member Variables -/
//--------------------------/
/**
* The name of script
*/
private java.lang.String _name;
/**
* Means that script will run asynchronously
*/
private java.lang.Boolean _async = new java.lang.Boolean("true");
//----------------/
//- Constructors -/
//----------------/
public Afterdelete()
{
super();
} //-- com.queplix.core.jxb.entity.Afterdelete()
//-----------/
//- Methods -/
//-----------/
/**
* Returns the value of field 'async'. The field 'async' has
* the following description: Means that script will run
* asynchronously
*
* @return Boolean
* @return the value of field 'async'.
*/
public java.lang.Boolean getAsync()
{
return this._async;
} //-- java.lang.Boolean getAsync()
/**
* Returns the value of field 'name'. The field 'name' has the
* following description: The name of script
*
* @return String
* @return the value of field 'name'.
*/
public java.lang.String getName()
{
return this._name;
} //-- java.lang.String getName()
/**
* Method isValid
*
*
*
* @return boolean
*/
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 'async'. The field 'async' has the
* following description: Means that script will run
* asynchronously
*
* @param async the value of field 'async'.
*/
public void setAsync(java.lang.Boolean async)
{
this._async = async;
} //-- void setAsync(java.lang.Boolean)
/**
* Sets the value of field 'name'. The field 'name' has the
* following description: The name of script
*
* @param name the value of field 'name'.
*/
public void setName(java.lang.String name)
{
this._name = name;
} //-- void setName(java.lang.String)
/**
* Method unmarshal
*
*
*
* @param reader
* @return Object
*/
public static java.lang.Object unmarshal(java.io.Reader reader)
throws org.exolab.castor.xml.MarshalException, org.exolab.castor.xml.ValidationException
{
return (com.queplix.core.jxb.entity.Afterdelete) Unmarshaller.unmarshal(com.queplix.core.jxb.entity.Afterdelete.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 + -