[XML-DEV Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

Re: XML Java API Standardization

  • From: digitome@i... (Digitome Ltd.)
  • To: xml-dev@i...
  • Date: Sun, 22 Jun 1997 11:26:23 +0100

xmlelement api
(I am not a Java person so I don't know the syntax for doing the following
in Java.
I presume it is possible. I think the approach might be useful though so
here goes)

The idea is to 

1) have a textual representation of an XML document as a Python program
2) be able to re-create textual representations of XML document structures
as Python programs

The following is a Python representation of a simple XML doc:-

from XMLStructures import *

x = XMLTree (
        XMLElement("FOO",(("ATTR1","VALUE1"),("ATTR2","VALUE2")),
         (
          XMLElement("BAR",(),())
         )
        )
)

The nice thing about this is that it is both data file and parser rolled
into one.
A simple "import" statement  recreates the in-memory representation of this 
data structure. Having created/manipulated an XMLTree the textual
representation can be created with a single print statement:-

x = XMLTree (
        XMLElement("FOO",(("ATTR1","VALUE1"),("ATTR2","VALUE2")),
         (
          XMLElement("BAR",(),())
         )
        )
)

# Change x here
# ...
print x

XMLTree (XMLElement ("FOO",(('ATTR1', 'VALUE1'), ('ATTR2',
'VALUE2')),XMLElement ("BAR",(),())))

1) Such structures give an immediate API in the form of Lispy list
processing stuff.
2) Such structures allow parsers to be compared / checked for correct
interpretation of XML.
3) Such structures give developers something to aim at when developing XML
markup
aware tools.

Just in case anyone is interested, here is the Python code for the classes :-

class XMLTree:
	def __init__ (self,r):
		self.root = r
	def __repr__ (self):
		return "XMLTree (%s)" % (self.root,)

class XMLElement:
	def __init__(self,gi,attlist,children):
		self.GI = gi
		self.XMLAttlist = attlist
		self.Children = children
	def __repr__(self):
		return "XMLElement (\"%s\",%s,%s)" % (self.GI,self.XMLAttlist,self.Children)

class XMLPcdata:
	def __init__(self,dat):
		self.data = dat
	def __repr__(self):
		return self.data
Sean Mc Grath

sean@d...
Digitome Electronic Publishing
http://www.digitome.com


xml-dev: A list for W3C XML Developers
Archived as: http://www.lists.ic.ac.uk/hypermail/xml-dev/
To unsubscribe, send to majordomo@i... the following message;
unsubscribe xml-dev
List coordinator, Henry Rzepa (rzepa@i...)


PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
 

Stylus Studio has published XML-DEV in RSS and ATOM formats, enabling users to easily subcribe to the list from their preferred news reader application.


Stylus Studio Sponsored Links are added links designed to provide related and additional information to the visitors of this website. they were not included by the author in the initial post. To view the content without the Sponsor Links please click here.

Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.