📄 xmlrwbean.java
字号:
/**
* =============================================
* Copyright 2005 TransFar
*
* Change Revision
* --------------------------------
* Date Author Remarks
* 2006-3-14 YHuang Create class com.szmx.component.xml.rw.XmlRwBean
* =============================================
*/
package com.szmx.component.xml.rw;
/**
* <TODO: Write a short description on the purpose of the program>
*
* @author YHuang
* @version 1.0
* @class com.szmx.component.xml.rw.XmlRwBean
* @since 2006-3-14
*/
public interface XmlRwBean {
/**
* Return an instance, which be store in XmlRwBean .
*
* @return the instance of the XmlBean
* @throws XmlBeanException if the bean could not be obtained
*/
AbstractXmlBean getXmlBean() throws XmlBeanException;
/**
* saveOrUpdate the xmlbean
*
* @throws XmlBeanException
*/
void saveOrUpdate() throws XmlBeanException;
/**
* the factory
*/
void destroy();
void init() throws XmlBeanException;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -