Author: mrglavas
Date: Wed Jun 2 03:43:43 2010
New Revision: 950356
URL: http://svn.apache.org/viewvc?rev=950356&view=rev
Log:
Adding @version tags to some classes that were missing them.
Modified:
xerces/java/branches/xml-schema-1.1-dev/samples/dom/DOM3.java
xerces/java/branches/xml-schema-1.1-dev/samples/dom/traversal/IteratorView.java
xerces/java/branches/xml-schema-1.1-dev/samples/dom/traversal/NameNodeFilter.java
xerces/java/branches/xml-schema-1.1-dev/samples/dom/traversal/TreeWalkerView.java
xerces/java/branches/xml-schema-1.1-dev/samples/sax/helpers/AttributesImpl.java
xerces/java/branches/xml-schema-1.1-dev/samples/simpletype/SimpleTypeUsage.java
xerces/java/branches/xml-schema-1.1-dev/samples/ui/DOMParserSaveEncoding.java
xerces/java/branches/xml-schema-1.1-dev/samples/ui/DefaultImages.java
xerces/java/branches/xml-schema-1.1-dev/samples/ui/TreeViewer.java
xerces/java/branches/xml-schema-1.1-dev/samples/xni/SecuritySupport.java
Modified: xerces/java/branches/xml-schema-1.1-dev/samples/dom/DOM3.java
URL:
http://svn.apache.org/viewvc/xerces/java/branches/xml-schema-1.1-dev/samples/dom/DOM3.java?rev=950356&r1=950355&r2=950356&view=diff
==============================================================================
--- xerces/java/branches/xml-schema-1.1-dev/samples/dom/DOM3.java (original)
+++ xerces/java/branches/xml-schema-1.1-dev/samples/dom/DOM3.java Wed Jun 2
03:43:43 2010
@@ -35,6 +35,8 @@ import org.w3c.dom.traversal.NodeFilter;
* This sample program illustrates how to use DOM L3
* DOMBuilder, DOMBuilderFilter DOMWriter and other DOM L3 functionality
* to preparse, revalidate and safe document.
+ *
+ * @version $Id$
*/
public class DOM3 implements DOMErrorHandler, LSParserFilter {
Modified:
xerces/java/branches/xml-schema-1.1-dev/samples/dom/traversal/IteratorView.java
URL:
http://svn.apache.org/viewvc/xerces/java/branches/xml-schema-1.1-dev/samples/dom/traversal/IteratorView.java?rev=950356&r1=950355&r2=950356&view=diff
==============================================================================
---
xerces/java/branches/xml-schema-1.1-dev/samples/dom/traversal/IteratorView.java
(original)
+++
xerces/java/branches/xml-schema-1.1-dev/samples/dom/traversal/IteratorView.java
Wed Jun 2 03:43:43 2010
@@ -55,9 +55,12 @@ import org.xml.sax.SAXParseException;
import ui.DOMTreeFull;
-/** This class shows a DOM Document in a JTree, and presents controls
- * which allow the user to create and view the progress of a NodeIterator
- * in the DOM tree.
+/**
+ * This class shows a DOM Document in a JTree, and presents controls
+ * which allow the user to create and view the progress of a NodeIterator
+ * in the DOM tree.
+ *
+ * @version $Id$
*/
public class IteratorView
extends JFrame
Modified:
xerces/java/branches/xml-schema-1.1-dev/samples/dom/traversal/NameNodeFilter.java
URL:
http://svn.apache.org/viewvc/xerces/java/branches/xml-schema-1.1-dev/samples/dom/traversal/NameNodeFilter.java?rev=950356&r1=950355&r2=950356&view=diff
==============================================================================
---
xerces/java/branches/xml-schema-1.1-dev/samples/dom/traversal/NameNodeFilter.java
(original)
+++
xerces/java/branches/xml-schema-1.1-dev/samples/dom/traversal/NameNodeFilter.java
Wed Jun 2 03:43:43 2010
@@ -20,9 +20,12 @@ package dom.traversal;
import org.w3c.dom.Node;
import org.w3c.dom.traversal.NodeFilter;
- /** An example filter which enables the client to set a <b>name</b> value
- * accept those node names which <b>match</b> (or explicitly <b>not
match</b>)
- * the set name value.
+ /**
+ * An example filter which enables the client to set a <b>name</b> value
+ * accept those node names which <b>match</b> (or explicitly <b>not
match</b>)
+ * the set name value.
+ *
+ * @version $Id$
*/
public class NameNodeFilter implements NodeFilter {
Modified:
xerces/java/branches/xml-schema-1.1-dev/samples/dom/traversal/TreeWalkerView.java
URL:
http://svn.apache.org/viewvc/xerces/java/branches/xml-schema-1.1-dev/samples/dom/traversal/TreeWalkerView.java?rev=950356&r1=950355&r2=950356&view=diff
==============================================================================
---
xerces/java/branches/xml-schema-1.1-dev/samples/dom/traversal/TreeWalkerView.java
(original)
+++
xerces/java/branches/xml-schema-1.1-dev/samples/dom/traversal/TreeWalkerView.java
Wed Jun 2 03:43:43 2010
@@ -56,9 +56,12 @@ import org.xml.sax.SAXParseException;
import ui.DOMTreeFull;
-/** This class shows a DOM Document in a JTree, and presents controls
- * which allow the user to create and view the progress of a TreeWalker
- * in the DOM tree.
+/**
+ * This class shows a DOM Document in a JTree, and presents controls
+ * which allow the user to create and view the progress of a TreeWalker
+ * in the DOM tree.
+ *
+ * @version $Id$
*/
public class TreeWalkerView
extends JFrame
Modified:
xerces/java/branches/xml-schema-1.1-dev/samples/sax/helpers/AttributesImpl.java
URL:
http://svn.apache.org/viewvc/xerces/java/branches/xml-schema-1.1-dev/samples/sax/helpers/AttributesImpl.java?rev=950356&r1=950355&r2=950356&view=diff
==============================================================================
---
xerces/java/branches/xml-schema-1.1-dev/samples/sax/helpers/AttributesImpl.java
(original)
+++
xerces/java/branches/xml-schema-1.1-dev/samples/sax/helpers/AttributesImpl.java
Wed Jun 2 03:43:43 2010
@@ -23,6 +23,8 @@ import org.xml.sax.Attributes;
* An Attributes implementation that can perform more operations
* than the attribute list helper supplied with the standard SAX2
* distribution.
+ *
+ * @version $Id$
*/
public class AttributesImpl
implements Attributes {
Modified:
xerces/java/branches/xml-schema-1.1-dev/samples/simpletype/SimpleTypeUsage.java
URL:
http://svn.apache.org/viewvc/xerces/java/branches/xml-schema-1.1-dev/samples/simpletype/SimpleTypeUsage.java?rev=950356&r1=950355&r2=950356&view=diff
==============================================================================
---
xerces/java/branches/xml-schema-1.1-dev/samples/simpletype/SimpleTypeUsage.java
(original)
+++
xerces/java/branches/xml-schema-1.1-dev/samples/simpletype/SimpleTypeUsage.java
Wed Jun 2 03:43:43 2010
@@ -40,7 +40,7 @@ import org.apache.xerces.xs.XSTypeDefini
* implementation directly as separate module.
*
* @author Neeraj Bajaj Sun Microsystems, inc.
- *
+ * @version $Id$
*/
public class SimpleTypeUsage{
Modified:
xerces/java/branches/xml-schema-1.1-dev/samples/ui/DOMParserSaveEncoding.java
URL:
http://svn.apache.org/viewvc/xerces/java/branches/xml-schema-1.1-dev/samples/ui/DOMParserSaveEncoding.java?rev=950356&r1=950355&r2=950356&view=diff
==============================================================================
---
xerces/java/branches/xml-schema-1.1-dev/samples/ui/DOMParserSaveEncoding.java
(original)
+++
xerces/java/branches/xml-schema-1.1-dev/samples/ui/DOMParserSaveEncoding.java
Wed Jun 2 03:43:43 2010
@@ -27,10 +27,9 @@ import org.apache.xerces.xni.XNIExceptio
* the Java Encoding of the XML document by overriding the startDocument
method
* and providing a way to capture the MIME encoding from the XML document
which
* in turn is converted to the Java Encoding by the internal MIME2Java class.
- *
+ *
+ * @version $Id$
*/
-
-
public class DOMParserSaveEncoding extends DOMParser {
String _mimeEncoding = "UTF-8";//Default MIME so we check the
file.encoding
private void setMimeEncoding( String encoding ) {
Modified: xerces/java/branches/xml-schema-1.1-dev/samples/ui/DefaultImages.java
URL:
http://svn.apache.org/viewvc/xerces/java/branches/xml-schema-1.1-dev/samples/ui/DefaultImages.java?rev=950356&r1=950355&r2=950356&view=diff
==============================================================================
--- xerces/java/branches/xml-schema-1.1-dev/samples/ui/DefaultImages.java
(original)
+++ xerces/java/branches/xml-schema-1.1-dev/samples/ui/DefaultImages.java Wed
Jun 2 03:43:43 2010
@@ -16,7 +16,9 @@
*/
package ui;
-
+/**
+ * @version $Id$
+ */
public class DefaultImages {
public static java.awt.Image createOpenFolderImage() {
Modified: xerces/java/branches/xml-schema-1.1-dev/samples/ui/TreeViewer.java
URL:
http://svn.apache.org/viewvc/xerces/java/branches/xml-schema-1.1-dev/samples/ui/TreeViewer.java?rev=950356&r1=950355&r2=950356&view=diff
==============================================================================
--- xerces/java/branches/xml-schema-1.1-dev/samples/ui/TreeViewer.java
(original)
+++ xerces/java/branches/xml-schema-1.1-dev/samples/ui/TreeViewer.java Wed Jun
2 03:43:43 2010
@@ -16,13 +16,11 @@
*/
package ui;
-/*
- *
+/**
* command line invocation wrapper for TreeViewer
*
- * @version
+ * @version $Id$
*/
-
public class TreeViewer {
public TreeViewer() {
Modified:
xerces/java/branches/xml-schema-1.1-dev/samples/xni/SecuritySupport.java
URL:
http://svn.apache.org/viewvc/xerces/java/branches/xml-schema-1.1-dev/samples/xni/SecuritySupport.java?rev=950356&r1=950355&r2=950356&view=diff
==============================================================================
--- xerces/java/branches/xml-schema-1.1-dev/samples/xni/SecuritySupport.java
(original)
+++ xerces/java/branches/xml-schema-1.1-dev/samples/xni/SecuritySupport.java
Wed Jun 2 03:43:43 2010
@@ -31,6 +31,8 @@ import java.security.PrivilegedException
* It is package private and therefore is not exposed as part of any API.
*
* @xerces.internal
+ *
+ * @version $Id$
*/
final class SecuritySupport {
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]