You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xerces.apache.org by mr...@apache.org on 2005/01/10 05:07:07 UTC

cvs commit: xml-xerces/java/samples/xni DocumentTracer.java Writer.java PSVIWriter.java

mrglavas    2005/01/09 20:07:07

  Modified:    java/samples/xni DocumentTracer.java Writer.java
                        PSVIWriter.java
  Log:
  Clean-up unused imports.
  
  Revision  Changes    Path
  1.26      +1 -2      xml-xerces/java/samples/xni/DocumentTracer.java
  
  Index: DocumentTracer.java
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/samples/xni/DocumentTracer.java,v
  retrieving revision 1.25
  retrieving revision 1.26
  diff -u -r1.25 -r1.26
  --- DocumentTracer.java	24 Feb 2004 23:41:05 -0000	1.25
  +++ DocumentTracer.java	10 Jan 2005 04:07:07 -0000	1.26
  @@ -21,7 +21,6 @@
   import java.io.PrintWriter;
   import java.io.UnsupportedEncodingException;
   import java.io.Writer;
  -import java.util.Enumeration;
   
   import org.apache.xerces.parsers.XMLDocumentParser;
   import org.apache.xerces.xni.Augmentations;
  
  
  
  1.21      +2 -3      xml-xerces/java/samples/xni/Writer.java
  
  Index: Writer.java
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/samples/xni/Writer.java,v
  retrieving revision 1.20
  retrieving revision 1.21
  diff -u -r1.20 -r1.21
  --- Writer.java	24 Feb 2004 23:41:05 -0000	1.20
  +++ Writer.java	10 Jan 2005 04:07:07 -0000	1.21
  @@ -22,14 +22,13 @@
   import java.io.UnsupportedEncodingException;
   
   import org.apache.xerces.parsers.XMLDocumentParser;
  -import org.apache.xerces.util.XMLAttributesImpl;
   import org.apache.xerces.xni.Augmentations;
  +import org.apache.xerces.xni.NamespaceContext;
   import org.apache.xerces.xni.QName;
   import org.apache.xerces.xni.XMLAttributes;
   import org.apache.xerces.xni.XMLLocator;
   import org.apache.xerces.xni.XMLString;
   import org.apache.xerces.xni.XNIException;
  -import org.apache.xerces.xni.NamespaceContext;
   import org.apache.xerces.xni.parser.XMLConfigurationException;
   import org.apache.xerces.xni.parser.XMLErrorHandler;
   import org.apache.xerces.xni.parser.XMLInputSource;
  
  
  
  1.29      +25 -23    xml-xerces/java/samples/xni/PSVIWriter.java
  
  Index: PSVIWriter.java
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/samples/xni/PSVIWriter.java,v
  retrieving revision 1.28
  retrieving revision 1.29
  diff -u -r1.28 -r1.29
  --- PSVIWriter.java	14 Apr 2004 00:52:25 -0000	1.28
  +++ PSVIWriter.java	10 Jan 2005 04:07:07 -0000	1.29
  @@ -16,6 +16,7 @@
   
   package xni;
   
  +import java.io.IOException;
   import java.util.Enumeration;
   import java.util.HashMap;
   import java.util.Stack;
  @@ -24,6 +25,27 @@
   import org.apache.xerces.dom.DocumentImpl;
   import org.apache.xerces.impl.Constants;
   import org.apache.xerces.impl.xs.SchemaSymbols;
  +import org.apache.xerces.util.DOMUtil;
  +import org.apache.xerces.util.NamespaceSupport;
  +import org.apache.xerces.util.XMLAttributesImpl;
  +import org.apache.xerces.util.XMLSymbols;
  +import org.apache.xerces.xni.Augmentations;
  +import org.apache.xerces.xni.NamespaceContext;
  +import org.apache.xerces.xni.QName;
  +import org.apache.xerces.xni.XMLAttributes;
  +import org.apache.xerces.xni.XMLDocumentHandler;
  +import org.apache.xerces.xni.XMLLocator;
  +import org.apache.xerces.xni.XMLResourceIdentifier;
  +import org.apache.xerces.xni.XMLString;
  +import org.apache.xerces.xni.XNIException;
  +import org.apache.xerces.xni.parser.XMLComponent;
  +import org.apache.xerces.xni.parser.XMLComponentManager;
  +import org.apache.xerces.xni.parser.XMLConfigurationException;
  +import org.apache.xerces.xni.parser.XMLDocumentFilter;
  +import org.apache.xerces.xni.parser.XMLDocumentSource;
  +import org.apache.xerces.xs.AttributePSVI;
  +import org.apache.xerces.xs.ElementPSVI;
  +import org.apache.xerces.xs.ItemPSVI;
   import org.apache.xerces.xs.StringList;
   import org.apache.xerces.xs.XSAnnotation;
   import org.apache.xerces.xs.XSAttributeDeclaration;
  @@ -48,31 +70,11 @@
   import org.apache.xerces.xs.XSSimpleTypeDefinition;
   import org.apache.xerces.xs.XSTypeDefinition;
   import org.apache.xerces.xs.XSWildcard;
  -import org.apache.xerces.util.DOMUtil;
  -import org.apache.xerces.util.NamespaceSupport;
  -import org.apache.xerces.util.SymbolTable;
  -import org.apache.xerces.util.XMLAttributesImpl;
  -import org.apache.xerces.util.XMLSymbols;
  -import org.apache.xerces.xni.Augmentations;
  -import org.apache.xerces.xni.NamespaceContext;
  -import org.apache.xerces.xni.QName;
  -import org.apache.xerces.xni.XMLAttributes;
  -import org.apache.xerces.xni.XMLDocumentHandler;
  -import org.apache.xerces.xni.XMLLocator;
  -import org.apache.xerces.xni.XMLResourceIdentifier;
  -import org.apache.xerces.xni.XMLString;
  -import org.apache.xerces.xni.XNIException;
  -import org.apache.xerces.xni.parser.XMLComponent;
  -import org.apache.xerces.xni.parser.XMLComponentManager;
  -import org.apache.xerces.xni.parser.XMLConfigurationException;
  -import org.apache.xerces.xni.parser.XMLDocumentFilter;
  -import org.apache.xerces.xni.parser.XMLDocumentSource;
  -import org.apache.xerces.xs.AttributePSVI;
  -import org.apache.xerces.xs.ElementPSVI;
  -import org.apache.xerces.xs.ItemPSVI;
   import org.w3c.dom.Attr;
   import org.w3c.dom.Element;
   import org.w3c.dom.Node;
  +import org.xml.sax.SAXNotRecognizedException;
  +import org.xml.sax.SAXNotSupportedException;
   
   /**
    * This class is a intersepts XNI events and serialized
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: xerces-cvs-unsubscribe@xml.apache.org
For additional commands, e-mail: xerces-cvs-help@xml.apache.org