xmlrwbean.java
来自「一个关于tlms的一个小程序 看看能否帮助到别人」· Java 代码 · 共 46 行
JAVA
46 行
/**
* =============================================
* 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 + =
减小字号Ctrl + -
显示快捷键?