krysalis-version/src/java/org/krysalis/version/interfacing VersionDataInterfaceProxy.java,1.10,1.11

[email protected]
Newsgroups gmane.comp.krysalis.sandbox
Message-ID <[email protected]>
Update of /cvsroot/metamorphosis/krysalis-version/src/java/org/krysalis/version/interfacing
In directory sc8-pr-cvs1:/tmp/cvs-serv19735/src/java/org/krysalis/version/interfacing

Modified Files:
	VersionDataInterfaceProxy.java 
Log Message:
Starting to expand the capabilities beyond the basic format & data elements
Lots more to do to complete this...

Index: VersionDataInterfaceProxy.java
===================================================================
RCS file: /cvsroot/metamorphosis/krysalis-version/src/java/org/krysalis/version/interfacing/VersionDataInterfaceProxy.java,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -d -r1.10 -r1.11
*** VersionDataInterfaceProxy.java	7 Feb 2003 20:11:52 -0000	1.10
--- VersionDataInterfaceProxy.java	7 Mar 2003 20:01:46 -0000	1.11
***************
*** 79,82 ****
--- 79,83 ----
  import org.krysalis.version.internal.signature.QualifiedVersionBean;
  import org.krysalis.version.internal.signature.SimpleVersionBean;
+ import org.krysalis.version.util.debug.DebugUtils;
  
  /**
***************
*** 649,656 ****
  
      public void dump(PrintWriter out, int depth) {
!         if (null != m_format)
!             m_format.dump(out);
!         if (null != m_data)
!             m_data.dump(out);
  
          if ((null != m_format) && (null != m_data))
--- 650,667 ----
  
      public void dump(PrintWriter out, int depth) {
!         final String indent = DebugUtils.getIndent(depth);
! 
!         if (null != m_format) {
!             out.print(indent);
!             out.println("Format:");
!             m_format.dump(out, depth + 1);
!         }
!         
!         if (null != m_data) {
!             out.print(indent);
!             out.println("Data:");
! 
!             m_data.dump(out, depth + 1);
!         }
  
          if ((null != m_format) && (null != m_data))




-------------------------------------------------------
This SF.net email is sponsored by: Etnus, makers of TotalView, The debugger 
for complex code. Debugging C/C++ programs can leave you feeling lost and 
disoriented. TotalView can help you find your way. Available on major UNIX 
and Linux platforms. Try it free. www.etnus.com
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.