[Ejtools-cvs] libraries/common/src/main/org/ejtools/beans/beancontext CustomBeanContextServiceProvid
Brought to you by:
letiemble
|
From: <let...@us...> - 2003-09-15 22:23:48
|
Update of /cvsroot/ejtools/libraries/common/src/main/org/ejtools/beans/beancontext
In directory sc8-pr-cvs1:/tmp/cvs-serv20661/common/src/main/org/ejtools/beans/beancontext
Modified Files:
CustomBeanContextServiceProvider.java
CustomBeanContextServicesSupport.java
Log Message:
Adjust Eclipse build files
Adjust some Javadoc
Integrate Persistence framework
Integrate Image export as PNG
Index: CustomBeanContextServiceProvider.java
===================================================================
RCS file: /cvsroot/ejtools/libraries/common/src/main/org/ejtools/beans/beancontext/CustomBeanContextServiceProvider.java,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** CustomBeanContextServiceProvider.java 21 Feb 2003 22:41:00 -0000 1.8
--- CustomBeanContextServiceProvider.java 15 Sep 2003 22:23:45 -0000 1.9
***************
*** 15,20 ****
* Super class that aggregates the Service support role, and the service provider role.
*
! * @author <a href="mailto:let...@us...">Laurent Etiemble</a>
! * @created 2 septembre 2002
* @version $Revision$
*/
--- 15,19 ----
* Super class that aggregates the Service support role, and the service provider role.
*
! * @author Laurent Etiemble
* @version $Revision$
*/
Index: CustomBeanContextServicesSupport.java
===================================================================
RCS file: /cvsroot/ejtools/libraries/common/src/main/org/ejtools/beans/beancontext/CustomBeanContextServicesSupport.java,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** CustomBeanContextServicesSupport.java 21 Feb 2003 22:41:00 -0000 1.7
--- CustomBeanContextServicesSupport.java 15 Sep 2003 22:23:45 -0000 1.8
***************
*** 15,29 ****
import java.util.TooManyListenersException;
/**
* Enhancement of the {@link BeanContextServicesSupport} to provide an implementation
* for the <code>clear</code> method, and a recursive search for a particular service.
*
! * @author <a href="mailto:let...@us...">Laurent Etiemble</a>
! * @created 2 septembre 2002
* @version $Revision$
- * @todo remove the logger
*/
! public abstract class CustomBeanContextServicesSupport extends BeanContextServicesSupport
{
/** Implementation of the <code>clear</code> method */
public void clear()
--- 15,41 ----
import java.util.TooManyListenersException;
+ import org.ejtools.util.state.Storable;
+ import org.ejtools.util.state.StoreVisitor;
+
/**
* Enhancement of the {@link BeanContextServicesSupport} to provide an implementation
* for the <code>clear</code> method, and a recursive search for a particular service.
*
! * @author Laurent Etiemble
* @version $Revision$
*/
! public abstract class CustomBeanContextServicesSupport extends BeanContextServicesSupport implements Storable
{
+ /**
+ * Description of the Method
+ *
+ * @param visitor Description of the Parameter
+ */
+ public void accept(StoreVisitor visitor)
+ {
+ visitor.persist(this);
+ }
+
+
/** Implementation of the <code>clear</code> method */
public void clear()
|