All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.magicwerk.brownies.jdom.package-info Maven / Gradle / Ivy

There is a newer version: 0.9.17
Show newest version
/*
 * Copyright 2015 by Thomas Mauch
 * 
 * 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
 * 
 * http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * 
 * $Id$
 */
/**
 * This packages contains helper methods for working with
 * the JDOM library
 * (http://www.jdom.org).
 */
/**
 * The brownies.xml classes offer the following functionality out of the box:
 * - reading a XML file
 * -- validating the file read against a DTD referenced in the XML document
 * -- validating the file read against a XSD referenced in the XML document
 * -- validating the file read against a XSD specified externally
 * - transforming a XML file by applying a XSL stylesheet
 * -- specifying parameters for the XSL transformation
 * - writing a XML file
 * - specify a proxy for acessing external documents
 * - specify a catalog for acessing external documents locally
 */
/*
 * Input documents:
 * - users.xml: 				no DTD or XSD included, would validate against users.xsd and users.dtd
 * - users-not-valid.xml: 		no DTD or XSD included, would not validate against users.xsd and users.dtd
 * - users-not-wellformed.xml: 	not wellformed
 * - users-dtd.xml:				reference to DTD users.dtd, valid
 * - users-dtd-not-valid.xml:	reference to DTD users.dtd, not valid
 * - users-xsd.xml:				reference to XSD users.xsd, valid
 * - users-xsd-not-valid.xml:	reference to XSD users.xsd, not valid
 */
package org.magicwerk.brownies.jdom;




© 2015 - 2025 Weber Informatics LLC | Privacy Policy