|
From: Pascal M. <mo...@us...> - 2001-03-26 16:40:25
|
Update of /cvsroot/motu/cocaine/src/coca/client
In directory usw-pr-cvs1:/tmp/cvs-serv19895/src/coca/client
Modified Files:
NamingClient.java
Log Message:
a new workspace list property in puser, a bug fix in namingclient display, fixed README.gui
Index: NamingClient.java
===================================================================
RCS file: /cvsroot/motu/cocaine/src/coca/client/NamingClient.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** NamingClient.java 2001/03/23 14:41:54 1.2
--- NamingClient.java 2001/03/26 16:40:21 1.3
***************
*** 64,67 ****
--- 64,73 ----
this.setLayout(new BorderLayout());
this.add(jsp,BorderLayout.CENTER);
+
+
+ for (Enumeration e = NamingClient.this.elements(); e.hasMoreElements(); ) {
+ Namingable n = (Namingable) e.nextElement();
+ this.newObjectInNaming(n);
+ }
}
***************
*** 101,104 ****
--- 107,112 ----
if (nInfo instanceof PCGroup){
n.add(new DefaultMutableTreeNode(puser));
+ } else {
+ dmt.add(new DefaultMutableTreeNode(o));
}
}
|