You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-commits@axis.apache.org by ve...@apache.org on 2014/02/26 12:42:40 UTC

svn commit: r1572019 - in /axis/axis1/java/trunk/axis-rt-core/src/main/java/org/apache/axis/wsdl/symbolTable: SymTabEntry.java TypeEntry.java

Author: veithen
Date: Wed Feb 26 11:42:40 2014
New Revision: 1572019

URL: http://svn.apache.org/r1572019
Log:
Output the class name in the toString method of all symbol table entries, not just type entries.

Modified:
    axis/axis1/java/trunk/axis-rt-core/src/main/java/org/apache/axis/wsdl/symbolTable/SymTabEntry.java
    axis/axis1/java/trunk/axis-rt-core/src/main/java/org/apache/axis/wsdl/symbolTable/TypeEntry.java

Modified: axis/axis1/java/trunk/axis-rt-core/src/main/java/org/apache/axis/wsdl/symbolTable/SymTabEntry.java
URL: http://svn.apache.org/viewvc/axis/axis1/java/trunk/axis-rt-core/src/main/java/org/apache/axis/wsdl/symbolTable/SymTabEntry.java?rev=1572019&r1=1572018&r2=1572019&view=diff
==============================================================================
--- axis/axis1/java/trunk/axis-rt-core/src/main/java/org/apache/axis/wsdl/symbolTable/SymTabEntry.java (original)
+++ axis/axis1/java/trunk/axis-rt-core/src/main/java/org/apache/axis/wsdl/symbolTable/SymTabEntry.java Wed Feb 26 11:42:40 2014
@@ -149,6 +149,7 @@ public abstract class SymTabEntry {
 
         StringBuffer buffer = new StringBuffer();
         buffer.append(indent).append("QName:         ").append(qname).append('\n');
+        buffer.append(indent).append("Class:         ").append(this.getClass().getName()).append('\n'); 
         buffer.append(indent).append("name:          ").append(name).append('\n');
         buffer.append(indent).append("isReferenced?  ").append(isReferenced).append('\n');
         String prefix = indent + "dynamicVars:   ";

Modified: axis/axis1/java/trunk/axis-rt-core/src/main/java/org/apache/axis/wsdl/symbolTable/TypeEntry.java
URL: http://svn.apache.org/viewvc/axis/axis1/java/trunk/axis-rt-core/src/main/java/org/apache/axis/wsdl/symbolTable/TypeEntry.java?rev=1572019&r1=1572018&r2=1572019&view=diff
==============================================================================
--- axis/axis1/java/trunk/axis-rt-core/src/main/java/org/apache/axis/wsdl/symbolTable/TypeEntry.java (original)
+++ axis/axis1/java/trunk/axis-rt-core/src/main/java/org/apache/axis/wsdl/symbolTable/TypeEntry.java Wed Feb 26 11:42:40 2014
@@ -448,7 +448,6 @@ public abstract class TypeEntry extends 
         }
 
         return super.toString(indent) 
-                + indent + "Class:         " + this.getClass().getName() + "\n" 
                 + indent + "Base?:         " + isBaseType + "\n" 
                 + indent + "Undefined?:    " + undefined + "\n" 
                 + indent + "isSimpleType?  " + isSimpleType + "\n"