You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by sc...@apache.org on 2002/10/15 22:27:31 UTC

cvs commit: xml-axis/java/src/org/apache/axis/description FaultDesc.java

scheu       2002/10/15 13:27:31

  Modified:    java/src/org/apache/axis/description FaultDesc.java
  Log:
  Updated toString method of FaultDesc to include name/type
  
  Revision  Changes    Path
  1.6       +2 -0      xml-axis/java/src/org/apache/axis/description/FaultDesc.java
  
  Index: FaultDesc.java
  ===================================================================
  RCS file: /home/cvs/xml-axis/java/src/org/apache/axis/description/FaultDesc.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- FaultDesc.java	14 Oct 2002 20:02:21 -0000	1.5
  +++ FaultDesc.java	15 Oct 2002 20:27:31 -0000	1.6
  @@ -127,7 +127,9 @@
       }
       public String toString(String indent) {
           String text ="";
  +        text+= indent + "name: " + getName() + "\n";
           text+= indent + "qname: " + getQName() + "\n";
  +        text+= indent + "type: " + getXmlType() + "\n";
           text+= indent + "Class: " + getClassName() + "\n";
           for (int i=0; parameters != null && i < parameters.size(); i++) {
               text+= indent +" ParameterDesc[" + i + "]:\n";