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 2006/09/18 07:01:45 UTC

svn commit: r447235 - /xerces/java/trunk/src/org/apache/xerces/jaxp/validation/

Author: mrglavas
Date: Sun Sep 17 22:01:44 2006
New Revision: 447235

URL: http://svn.apache.org/viewvc?view=rev&rev=447235
Log:
Update to the latest ASF license header. See http://www.apache.org/legal/src-headers.html.

Modified:
    xerces/java/trunk/src/org/apache/xerces/jaxp/validation/AbstractXMLSchema.java
    xerces/java/trunk/src/org/apache/xerces/jaxp/validation/DOMDocumentHandler.java
    xerces/java/trunk/src/org/apache/xerces/jaxp/validation/DOMResultAugmentor.java
    xerces/java/trunk/src/org/apache/xerces/jaxp/validation/DOMResultBuilder.java
    xerces/java/trunk/src/org/apache/xerces/jaxp/validation/DOMValidatorHelper.java
    xerces/java/trunk/src/org/apache/xerces/jaxp/validation/DraconianErrorHandler.java
    xerces/java/trunk/src/org/apache/xerces/jaxp/validation/EmptyXMLSchema.java
    xerces/java/trunk/src/org/apache/xerces/jaxp/validation/JAXPValidationMessageFormatter.java
    xerces/java/trunk/src/org/apache/xerces/jaxp/validation/ReadOnlyGrammarPool.java
    xerces/java/trunk/src/org/apache/xerces/jaxp/validation/SimpleXMLSchema.java
    xerces/java/trunk/src/org/apache/xerces/jaxp/validation/SoftReferenceGrammarPool.java
    xerces/java/trunk/src/org/apache/xerces/jaxp/validation/StreamValidatorHelper.java
    xerces/java/trunk/src/org/apache/xerces/jaxp/validation/Util.java
    xerces/java/trunk/src/org/apache/xerces/jaxp/validation/ValidatorHandlerImpl.java
    xerces/java/trunk/src/org/apache/xerces/jaxp/validation/ValidatorHelper.java
    xerces/java/trunk/src/org/apache/xerces/jaxp/validation/ValidatorImpl.java
    xerces/java/trunk/src/org/apache/xerces/jaxp/validation/WeakReferenceXMLSchema.java
    xerces/java/trunk/src/org/apache/xerces/jaxp/validation/XMLSchema.java
    xerces/java/trunk/src/org/apache/xerces/jaxp/validation/XMLSchemaFactory.java
    xerces/java/trunk/src/org/apache/xerces/jaxp/validation/XMLSchemaValidatorComponentManager.java
    xerces/java/trunk/src/org/apache/xerces/jaxp/validation/XSGrammarPoolContainer.java

Modified: xerces/java/trunk/src/org/apache/xerces/jaxp/validation/AbstractXMLSchema.java
URL: http://svn.apache.org/viewvc/xerces/java/trunk/src/org/apache/xerces/jaxp/validation/AbstractXMLSchema.java?view=diff&rev=447235&r1=447234&r2=447235
==============================================================================
--- xerces/java/trunk/src/org/apache/xerces/jaxp/validation/AbstractXMLSchema.java (original)
+++ xerces/java/trunk/src/org/apache/xerces/jaxp/validation/AbstractXMLSchema.java Sun Sep 17 22:01:44 2006
@@ -1,9 +1,10 @@
 /*
- * Copyright 2005,2006 The Apache Software Foundation.
- * 
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
  * 
  *      http://www.apache.org/licenses/LICENSE-2.0
  * 

Modified: xerces/java/trunk/src/org/apache/xerces/jaxp/validation/DOMDocumentHandler.java
URL: http://svn.apache.org/viewvc/xerces/java/trunk/src/org/apache/xerces/jaxp/validation/DOMDocumentHandler.java?view=diff&rev=447235&r1=447234&r2=447235
==============================================================================
--- xerces/java/trunk/src/org/apache/xerces/jaxp/validation/DOMDocumentHandler.java (original)
+++ xerces/java/trunk/src/org/apache/xerces/jaxp/validation/DOMDocumentHandler.java Sun Sep 17 22:01:44 2006
@@ -1,9 +1,10 @@
 /*
- * Copyright 2005 The Apache Software Foundation.
- * 
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
  * 
  *      http://www.apache.org/licenses/LICENSE-2.0
  * 

Modified: xerces/java/trunk/src/org/apache/xerces/jaxp/validation/DOMResultAugmentor.java
URL: http://svn.apache.org/viewvc/xerces/java/trunk/src/org/apache/xerces/jaxp/validation/DOMResultAugmentor.java?view=diff&rev=447235&r1=447234&r2=447235
==============================================================================
--- xerces/java/trunk/src/org/apache/xerces/jaxp/validation/DOMResultAugmentor.java (original)
+++ xerces/java/trunk/src/org/apache/xerces/jaxp/validation/DOMResultAugmentor.java Sun Sep 17 22:01:44 2006
@@ -1,9 +1,10 @@
 /*
- * Copyright 2005,2006 The Apache Software Foundation.
- * 
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
  * 
  *      http://www.apache.org/licenses/LICENSE-2.0
  * 

Modified: xerces/java/trunk/src/org/apache/xerces/jaxp/validation/DOMResultBuilder.java
URL: http://svn.apache.org/viewvc/xerces/java/trunk/src/org/apache/xerces/jaxp/validation/DOMResultBuilder.java?view=diff&rev=447235&r1=447234&r2=447235
==============================================================================
--- xerces/java/trunk/src/org/apache/xerces/jaxp/validation/DOMResultBuilder.java (original)
+++ xerces/java/trunk/src/org/apache/xerces/jaxp/validation/DOMResultBuilder.java Sun Sep 17 22:01:44 2006
@@ -1,9 +1,10 @@
 /*
- * Copyright 2005,2006 The Apache Software Foundation.
- * 
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
  * 
  *      http://www.apache.org/licenses/LICENSE-2.0
  * 

Modified: xerces/java/trunk/src/org/apache/xerces/jaxp/validation/DOMValidatorHelper.java
URL: http://svn.apache.org/viewvc/xerces/java/trunk/src/org/apache/xerces/jaxp/validation/DOMValidatorHelper.java?view=diff&rev=447235&r1=447234&r2=447235
==============================================================================
--- xerces/java/trunk/src/org/apache/xerces/jaxp/validation/DOMValidatorHelper.java (original)
+++ xerces/java/trunk/src/org/apache/xerces/jaxp/validation/DOMValidatorHelper.java Sun Sep 17 22:01:44 2006
@@ -1,9 +1,10 @@
 /*
- * Copyright 2005 The Apache Software Foundation.
- * 
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
  * 
  *      http://www.apache.org/licenses/LICENSE-2.0
  * 

Modified: xerces/java/trunk/src/org/apache/xerces/jaxp/validation/DraconianErrorHandler.java
URL: http://svn.apache.org/viewvc/xerces/java/trunk/src/org/apache/xerces/jaxp/validation/DraconianErrorHandler.java?view=diff&rev=447235&r1=447234&r2=447235
==============================================================================
--- xerces/java/trunk/src/org/apache/xerces/jaxp/validation/DraconianErrorHandler.java (original)
+++ xerces/java/trunk/src/org/apache/xerces/jaxp/validation/DraconianErrorHandler.java Sun Sep 17 22:01:44 2006
@@ -1,9 +1,10 @@
 /*
- * Copyright 2005 The Apache Software Foundation.
- * 
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
  * 
  *      http://www.apache.org/licenses/LICENSE-2.0
  * 

Modified: xerces/java/trunk/src/org/apache/xerces/jaxp/validation/EmptyXMLSchema.java
URL: http://svn.apache.org/viewvc/xerces/java/trunk/src/org/apache/xerces/jaxp/validation/EmptyXMLSchema.java?view=diff&rev=447235&r1=447234&r2=447235
==============================================================================
--- xerces/java/trunk/src/org/apache/xerces/jaxp/validation/EmptyXMLSchema.java (original)
+++ xerces/java/trunk/src/org/apache/xerces/jaxp/validation/EmptyXMLSchema.java Sun Sep 17 22:01:44 2006
@@ -1,9 +1,10 @@
 /*
- * Copyright 2005,2006 The Apache Software Foundation.
- * 
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
  * 
  *      http://www.apache.org/licenses/LICENSE-2.0
  * 

Modified: xerces/java/trunk/src/org/apache/xerces/jaxp/validation/JAXPValidationMessageFormatter.java
URL: http://svn.apache.org/viewvc/xerces/java/trunk/src/org/apache/xerces/jaxp/validation/JAXPValidationMessageFormatter.java?view=diff&rev=447235&r1=447234&r2=447235
==============================================================================
--- xerces/java/trunk/src/org/apache/xerces/jaxp/validation/JAXPValidationMessageFormatter.java (original)
+++ xerces/java/trunk/src/org/apache/xerces/jaxp/validation/JAXPValidationMessageFormatter.java Sun Sep 17 22:01:44 2006
@@ -1,9 +1,10 @@
 /*
- * Copyright 2005 The Apache Software Foundation.
- * 
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
  * 
  *      http://www.apache.org/licenses/LICENSE-2.0
  * 

Modified: xerces/java/trunk/src/org/apache/xerces/jaxp/validation/ReadOnlyGrammarPool.java
URL: http://svn.apache.org/viewvc/xerces/java/trunk/src/org/apache/xerces/jaxp/validation/ReadOnlyGrammarPool.java?view=diff&rev=447235&r1=447234&r2=447235
==============================================================================
--- xerces/java/trunk/src/org/apache/xerces/jaxp/validation/ReadOnlyGrammarPool.java (original)
+++ xerces/java/trunk/src/org/apache/xerces/jaxp/validation/ReadOnlyGrammarPool.java Sun Sep 17 22:01:44 2006
@@ -1,9 +1,10 @@
 /*
- * Copyright 2005 The Apache Software Foundation.
- * 
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
  * 
  *      http://www.apache.org/licenses/LICENSE-2.0
  * 

Modified: xerces/java/trunk/src/org/apache/xerces/jaxp/validation/SimpleXMLSchema.java
URL: http://svn.apache.org/viewvc/xerces/java/trunk/src/org/apache/xerces/jaxp/validation/SimpleXMLSchema.java?view=diff&rev=447235&r1=447234&r2=447235
==============================================================================
--- xerces/java/trunk/src/org/apache/xerces/jaxp/validation/SimpleXMLSchema.java (original)
+++ xerces/java/trunk/src/org/apache/xerces/jaxp/validation/SimpleXMLSchema.java Sun Sep 17 22:01:44 2006
@@ -1,9 +1,10 @@
 /*
- * Copyright 2005 The Apache Software Foundation.
- * 
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
  * 
  *      http://www.apache.org/licenses/LICENSE-2.0
  * 

Modified: xerces/java/trunk/src/org/apache/xerces/jaxp/validation/SoftReferenceGrammarPool.java
URL: http://svn.apache.org/viewvc/xerces/java/trunk/src/org/apache/xerces/jaxp/validation/SoftReferenceGrammarPool.java?view=diff&rev=447235&r1=447234&r2=447235
==============================================================================
--- xerces/java/trunk/src/org/apache/xerces/jaxp/validation/SoftReferenceGrammarPool.java (original)
+++ xerces/java/trunk/src/org/apache/xerces/jaxp/validation/SoftReferenceGrammarPool.java Sun Sep 17 22:01:44 2006
@@ -1,9 +1,10 @@
 /*
- * Copyright 2005 The Apache Software Foundation.
- * 
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
  * 
  *      http://www.apache.org/licenses/LICENSE-2.0
  * 

Modified: xerces/java/trunk/src/org/apache/xerces/jaxp/validation/StreamValidatorHelper.java
URL: http://svn.apache.org/viewvc/xerces/java/trunk/src/org/apache/xerces/jaxp/validation/StreamValidatorHelper.java?view=diff&rev=447235&r1=447234&r2=447235
==============================================================================
--- xerces/java/trunk/src/org/apache/xerces/jaxp/validation/StreamValidatorHelper.java (original)
+++ xerces/java/trunk/src/org/apache/xerces/jaxp/validation/StreamValidatorHelper.java Sun Sep 17 22:01:44 2006
@@ -1,9 +1,10 @@
 /*
- * Copyright 2005 The Apache Software Foundation.
- * 
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
  * 
  *      http://www.apache.org/licenses/LICENSE-2.0
  * 

Modified: xerces/java/trunk/src/org/apache/xerces/jaxp/validation/Util.java
URL: http://svn.apache.org/viewvc/xerces/java/trunk/src/org/apache/xerces/jaxp/validation/Util.java?view=diff&rev=447235&r1=447234&r2=447235
==============================================================================
--- xerces/java/trunk/src/org/apache/xerces/jaxp/validation/Util.java (original)
+++ xerces/java/trunk/src/org/apache/xerces/jaxp/validation/Util.java Sun Sep 17 22:01:44 2006
@@ -1,9 +1,10 @@
 /*
- * Copyright 2005 The Apache Software Foundation.
- * 
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
  * 
  *      http://www.apache.org/licenses/LICENSE-2.0
  * 

Modified: xerces/java/trunk/src/org/apache/xerces/jaxp/validation/ValidatorHandlerImpl.java
URL: http://svn.apache.org/viewvc/xerces/java/trunk/src/org/apache/xerces/jaxp/validation/ValidatorHandlerImpl.java?view=diff&rev=447235&r1=447234&r2=447235
==============================================================================
--- xerces/java/trunk/src/org/apache/xerces/jaxp/validation/ValidatorHandlerImpl.java (original)
+++ xerces/java/trunk/src/org/apache/xerces/jaxp/validation/ValidatorHandlerImpl.java Sun Sep 17 22:01:44 2006
@@ -1,9 +1,10 @@
 /*
- * Copyright 2005,2006 The Apache Software Foundation.
- * 
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
  * 
  *      http://www.apache.org/licenses/LICENSE-2.0
  * 

Modified: xerces/java/trunk/src/org/apache/xerces/jaxp/validation/ValidatorHelper.java
URL: http://svn.apache.org/viewvc/xerces/java/trunk/src/org/apache/xerces/jaxp/validation/ValidatorHelper.java?view=diff&rev=447235&r1=447234&r2=447235
==============================================================================
--- xerces/java/trunk/src/org/apache/xerces/jaxp/validation/ValidatorHelper.java (original)
+++ xerces/java/trunk/src/org/apache/xerces/jaxp/validation/ValidatorHelper.java Sun Sep 17 22:01:44 2006
@@ -1,9 +1,10 @@
 /*
- * Copyright 2005 The Apache Software Foundation.
- * 
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
  * 
  *      http://www.apache.org/licenses/LICENSE-2.0
  * 

Modified: xerces/java/trunk/src/org/apache/xerces/jaxp/validation/ValidatorImpl.java
URL: http://svn.apache.org/viewvc/xerces/java/trunk/src/org/apache/xerces/jaxp/validation/ValidatorImpl.java?view=diff&rev=447235&r1=447234&r2=447235
==============================================================================
--- xerces/java/trunk/src/org/apache/xerces/jaxp/validation/ValidatorImpl.java (original)
+++ xerces/java/trunk/src/org/apache/xerces/jaxp/validation/ValidatorImpl.java Sun Sep 17 22:01:44 2006
@@ -1,9 +1,10 @@
 /*
- * Copyright 2005,2006 The Apache Software Foundation.
- * 
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
  * 
  *      http://www.apache.org/licenses/LICENSE-2.0
  * 

Modified: xerces/java/trunk/src/org/apache/xerces/jaxp/validation/WeakReferenceXMLSchema.java
URL: http://svn.apache.org/viewvc/xerces/java/trunk/src/org/apache/xerces/jaxp/validation/WeakReferenceXMLSchema.java?view=diff&rev=447235&r1=447234&r2=447235
==============================================================================
--- xerces/java/trunk/src/org/apache/xerces/jaxp/validation/WeakReferenceXMLSchema.java (original)
+++ xerces/java/trunk/src/org/apache/xerces/jaxp/validation/WeakReferenceXMLSchema.java Sun Sep 17 22:01:44 2006
@@ -1,9 +1,10 @@
 /*
- * Copyright 2005 The Apache Software Foundation.
- * 
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
  * 
  *      http://www.apache.org/licenses/LICENSE-2.0
  * 

Modified: xerces/java/trunk/src/org/apache/xerces/jaxp/validation/XMLSchema.java
URL: http://svn.apache.org/viewvc/xerces/java/trunk/src/org/apache/xerces/jaxp/validation/XMLSchema.java?view=diff&rev=447235&r1=447234&r2=447235
==============================================================================
--- xerces/java/trunk/src/org/apache/xerces/jaxp/validation/XMLSchema.java (original)
+++ xerces/java/trunk/src/org/apache/xerces/jaxp/validation/XMLSchema.java Sun Sep 17 22:01:44 2006
@@ -1,9 +1,10 @@
 /*
- * Copyright 2005,2006 The Apache Software Foundation.
- * 
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
  * 
  *      http://www.apache.org/licenses/LICENSE-2.0
  * 

Modified: xerces/java/trunk/src/org/apache/xerces/jaxp/validation/XMLSchemaFactory.java
URL: http://svn.apache.org/viewvc/xerces/java/trunk/src/org/apache/xerces/jaxp/validation/XMLSchemaFactory.java?view=diff&rev=447235&r1=447234&r2=447235
==============================================================================
--- xerces/java/trunk/src/org/apache/xerces/jaxp/validation/XMLSchemaFactory.java (original)
+++ xerces/java/trunk/src/org/apache/xerces/jaxp/validation/XMLSchemaFactory.java Sun Sep 17 22:01:44 2006
@@ -1,9 +1,10 @@
 /*
- * Copyright 2005,2006 The Apache Software Foundation.
- * 
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
  * 
  *      http://www.apache.org/licenses/LICENSE-2.0
  * 

Modified: xerces/java/trunk/src/org/apache/xerces/jaxp/validation/XMLSchemaValidatorComponentManager.java
URL: http://svn.apache.org/viewvc/xerces/java/trunk/src/org/apache/xerces/jaxp/validation/XMLSchemaValidatorComponentManager.java?view=diff&rev=447235&r1=447234&r2=447235
==============================================================================
--- xerces/java/trunk/src/org/apache/xerces/jaxp/validation/XMLSchemaValidatorComponentManager.java (original)
+++ xerces/java/trunk/src/org/apache/xerces/jaxp/validation/XMLSchemaValidatorComponentManager.java Sun Sep 17 22:01:44 2006
@@ -1,9 +1,10 @@
 /*
- * Copyright 2005,2006 The Apache Software Foundation.
- * 
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
  * 
  *      http://www.apache.org/licenses/LICENSE-2.0
  * 

Modified: xerces/java/trunk/src/org/apache/xerces/jaxp/validation/XSGrammarPoolContainer.java
URL: http://svn.apache.org/viewvc/xerces/java/trunk/src/org/apache/xerces/jaxp/validation/XSGrammarPoolContainer.java?view=diff&rev=447235&r1=447234&r2=447235
==============================================================================
--- xerces/java/trunk/src/org/apache/xerces/jaxp/validation/XSGrammarPoolContainer.java (original)
+++ xerces/java/trunk/src/org/apache/xerces/jaxp/validation/XSGrammarPoolContainer.java Sun Sep 17 22:01:44 2006
@@ -1,9 +1,10 @@
 /*
- * Copyright 2005,2006 The Apache Software Foundation.
- * 
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
  * 
  *      http://www.apache.org/licenses/LICENSE-2.0
  * 



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