Skip to content

Commit

Permalink
Changed the name of the package
Browse files Browse the repository at this point in the history
From it.trv.easyxml to it.trvi.easyxml.
  • Loading branch information
StefanoTrv committed Sep 14, 2021
1 parent aa15177 commit 15a8675
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
Binary file modified EasyXML.jar
Binary file not shown.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,18 +42,19 @@ A Java library to easily parse, unparse and manipulate XML.
* [Conclusion](#conclusion)

# Release notes
* **1.0.1**: Renamed package: "it.trv.easyxml" -> "it.trvi.easyxml"
* **1.0.0**: Initial release

# Introduction
The scope of this library is to provide an instrument to easily parse, unparse and manipulate XML code. Unlike other Java libraries that focus mostly on high speed parsing, this library focuses on ease of use and maximum flexibility. This library is thus ideal for projects that don't need extremely high performance XML parsing, but instead need a simple and ready-to-use parser of XML and/or the ability to freely inspect and manipulate XML items.

The parser in this library is based on the Java DOM parser.

All the classes in this library are contained in the package "`it.trv.easyxml`".
All the classes in this library are contained in the package "`it.trvi.easyxml`".

# Documentation
This library is composed by two classes: `XMLElement` represents a single XML element and provides methods to access and modify its data and its children; `XMLTreeBuilder` provides various functions to parse XML code into an XMLElement.
Both these classes are contained in the package "`it.trv.easyxml`".
Both these classes are contained in the package "`it.trvi.easyxml`".

## XMLElement
The XMLElement class represents an XML element with its text content, attributes and children. The tag name is immutable and is set at the moment of the object initialization, all the other features can be modified.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package it.trv.easyxml;
package it.trvi.easyxml;

import java.util.*;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package it.trv.easyxml;
package it.trvi.easyxml;

import org.w3c.dom.*;
import org.xml.sax.SAXException;
Expand Down

0 comments on commit 15a8675

Please sign in to comment.