|
From: Christopher W. <caw...@us...> - 2006-04-07 16:43:59
|
Update of /cvsroot/rubyeclipse/org.rubypeople.rdt.core/src/org/rubypeople/rdt/internal/core In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18806/src/org/rubypeople/rdt/internal/core Modified Files: RubySingletonMethod.java Log Message: report singleton method names in a consistent way Index: RubySingletonMethod.java =================================================================== RCS file: /cvsroot/rubyeclipse/org.rubypeople.rdt.core/src/org/rubypeople/rdt/internal/core/RubySingletonMethod.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** RubySingletonMethod.java 10 Feb 2006 18:29:16 -0000 1.2 --- RubySingletonMethod.java 7 Apr 2006 16:43:54 -0000 1.3 *************** *** 40,43 **** --- 40,47 ---- return true; } + + public String getElementName() { + return parent.getElementName() + "." + this.name; + } } |