[Mydm-cvs] MyDM/src/java/org/mydm/core ECollection.java,1.4,1.5
Status: Pre-Alpha
Brought to you by:
vkdasari
From: <ka...@us...> - 2004-03-14 18:24:59
|
Update of /cvsroot/mydm/MyDM/src/java/org/mydm/core In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19176 Modified Files: ECollection.java Log Message: cut coll name if is lenght as 16 character Index: ECollection.java =================================================================== RCS file: /cvsroot/mydm/MyDM/src/java/org/mydm/core/ECollection.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** ECollection.java 27 Feb 2004 22:25:39 -0000 1.4 --- ECollection.java 14 Mar 2004 18:15:59 -0000 1.5 *************** *** 25,29 **** import java.util.logging.Logger; - /** * Basic ECollection Object. ECollection is a container for the EDocument --- 25,28 ---- *************** *** 146,149 **** --- 145,151 ---- */ public String toString(){ + if (colname.length()>16){ + colname = colname.substring(0,16)+"..."; + } return colname; } |