|
From: <caw...@us...> - 2007-07-23 18:53:52
|
Revision: 2820
http://svn.sourceforge.net/rubyeclipse/?rev=2820&view=rev
Author: cawilliams
Date: 2007-07-23 11:53:51 -0700 (Mon, 23 Jul 2007)
Log Message:
-----------
use more sensible T_CONTAINER_QUALIFIED when methods are fully qualified (not T_FULLY_QUALIFIED which adds the file path)
Modified Paths:
--------------
trunk/org.rubypeople.rdt.ui/src/org/rubypeople/rdt/ui/RubyElementLabels.java
Modified: trunk/org.rubypeople.rdt.ui/src/org/rubypeople/rdt/ui/RubyElementLabels.java
===================================================================
--- trunk/org.rubypeople.rdt.ui/src/org/rubypeople/rdt/ui/RubyElementLabels.java 2007-07-23 18:33:00 UTC (rev 2819)
+++ trunk/org.rubypeople.rdt.ui/src/org/rubypeople/rdt/ui/RubyElementLabels.java 2007-07-23 18:53:51 UTC (rev 2820)
@@ -366,7 +366,7 @@
// qualification
if (getFlag(flags, M_FULLY_QUALIFIED)) {
if (method.getDeclaringType() != null) {
- getTypeLabel(method.getDeclaringType(), T_FULLY_QUALIFIED
+ getTypeLabel(method.getDeclaringType(), T_CONTAINER_QUALIFIED
| (flags & QUALIFIER_FLAGS), buf);
buf.append('.');
}
@@ -416,7 +416,7 @@
if (getFlag(flags, M_POST_QUALIFIED)) {
if (method.getDeclaringType() != null) {
buf.append(CONCAT_STRING);
- getTypeLabel(method.getDeclaringType(), T_FULLY_QUALIFIED
+ getTypeLabel(method.getDeclaringType(), T_CONTAINER_QUALIFIED
| (flags & QUALIFIER_FLAGS), buf);
}
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|