|
From: Richard G C. <pim...@us...> - 2004-07-28 15:18:12
|
Update of /cvsroot/openorb/OpenORB/src/compiler/org/openorb/compiler/object In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29014/OpenORB/src/compiler/org/openorb/compiler/object Modified Files: IdlObject.java Log Message: refactoring + more verbose output Index: IdlObject.java =================================================================== RCS file: /cvsroot/openorb/OpenORB/src/compiler/org/openorb/compiler/object/IdlObject.java,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- IdlObject.java 10 Feb 2004 21:02:39 -0000 1.5 +++ IdlObject.java 28 Jul 2004 15:18:04 -0000 1.6 @@ -149,6 +149,11 @@ this( type, father, father.getParser() ); } + public String toString() + { + return getClass() + "{name=[" + idlName() + "], id=[" + idlID() + "]"; + } + public IdlParser getParser() { return m_parser; |