[Ejtools-cvs] applications/management.browser/src/main/org/ejtools/management/browser/model ManagedO
Brought to you by:
letiemble
From: <let...@us...> - 2003-11-27 01:39:51
|
Update of /cvsroot/ejtools/applications/management.browser/src/main/org/ejtools/management/browser/model In directory sc8-pr-cvs1:/tmp/cvs-serv18798/management.browser/src/main/org/ejtools/management/browser/model Modified Files: ManagedObject.java Node.java Server.java Log Message: Address Todo #800902 Address Todo #755528 Index: ManagedObject.java =================================================================== RCS file: /cvsroot/ejtools/applications/management.browser/src/main/org/ejtools/management/browser/model/ManagedObject.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** ManagedObject.java 16 Mar 2003 22:19:07 -0000 1.3 --- ManagedObject.java 27 Nov 2003 01:39:48 -0000 1.4 *************** *** 1,878 **** ! /* ! * EJTools, the Enterprise Java Tools ! * ! * Distributable under LGPL license. ! * See terms of license at www.gnu.org. ! */ ! package org.ejtools.management.browser.model; ! ! import java.awt.Component; ! import java.beans.beancontext.BeanContextServices; [...1737 lines suppressed...] ! * @param context Description of the Parameter ! */ ! protected void useServices(BeanContextServices context) ! { ! if (context.hasService(CacheService.class)) ! { ! // logger.debug("Using service CacheService... for " + this + " nested in " + context); ! try ! { ! CacheService service = (CacheService) context.getService(this, this, CacheService.class, this, this); ! service.add(CacheService.RESOURCE_TYPE, this.getCanonicalName(), this); ! context.releaseService(this, this, CacheService.class); ! } ! catch (Exception e) ! { ! logger.error("Error during utilisation of service CacheService for " + this.getName(), e); ! } ! } ! } ! } Index: Node.java =================================================================== RCS file: /cvsroot/ejtools/applications/management.browser/src/main/org/ejtools/management/browser/model/Node.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** Node.java 24 Feb 2003 22:35:14 -0000 1.3 --- Node.java 27 Nov 2003 01:39:48 -0000 1.4 *************** *** 24,28 **** * * @author Laurent Etiemble - * @created 13 décembre 2001 * @version $Revision$ * @todo Javadoc to complete --- 24,27 ---- Index: Server.java =================================================================== RCS file: /cvsroot/ejtools/applications/management.browser/src/main/org/ejtools/management/browser/model/Server.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** Server.java 16 Mar 2003 22:19:08 -0000 1.4 --- Server.java 27 Nov 2003 01:39:48 -0000 1.5 *************** *** 1,507 **** ! /* ! * EJTools, the Enterprise Java Tools ! * ! * Distributable under LGPL license. ! * See terms of license at www.gnu.org. ! */ ! package org.ejtools.management.browser.model; ! ! import java.beans.beancontext.BeanContextServices; ! import java.util.Collection; [...1011 lines suppressed...] ! protected void setCount(int count) ! { ! int oldCount = this.count; ! this.count = count; ! this.firePropertyChange("count", new Integer(oldCount), new Integer(count)); ! } ! ! ! /** ! * Setter for the defaultDomain attribute ! * ! * @param defaultDomain The new defaultDomain value ! */ ! protected void setDefaultDomain(String defaultDomain) ! { ! String oldDomain = this.defaultDomain; ! this.defaultDomain = defaultDomain; ! this.firePropertyChange("defaultDomain", oldDomain, defaultDomain); ! } ! } |