Maple Professional
Maple Academic
Maple Student Edition
Maple Personal Edition
Maple Player
Maple Player for iPad
MapleSim Professional
MapleSim Academic
Maple T.A. - Testing & Assessment
Maple T.A. MAA Placement Test Suite
Möbius - Online Courseware
Machine Design / Industrial Automation
Aerospace
Vehicle Engineering
Robotics
Power Industries
System Simulation and Analysis
Model development for HIL
Plant Modeling for Control Design
Robotics/Motion Control/Mechatronics
Other Application Areas
Mathematics Education
Engineering Education
High Schools & Two-Year Colleges
Testing & Assessment
Students
Financial Modeling
Operations Research
High Performance Computing
Physics
Live Webinars
Recorded Webinars
Upcoming Events
MaplePrimes
Maplesoft Blog
Maplesoft Membership
Maple Ambassador Program
MapleCloud
Technical Whitepapers
E-Mail Newsletters
Maple Books
Math Matters
Application Center
MapleSim Model Gallery
User Case Studies
Exploring Engineering Fundamentals
Teaching Concepts with Maple
Maplesoft Welcome Center
Teacher Resource Center
Student Help Center
XMLTools[ProcessAttributes] - process the attributes of an XML element
Calling Sequence
ProcessAttributes(xmlTree, Allowable, Values, Options)
Parameters
xmlTree
-
Maple XML tree; XML element
Allowable
set of strings; attribute names that are valid for xmlTree
Values
table; on exit, contains an entry for each attribute value indexed by the attribute name
Options
(optional) equations of the form option_name = option_value; error-checking options
Description
The ProcessAttributes(xmlTree, Allowable, Values, Options) command processes the attributes of xmlTree by assigning any attribute values to Values (a table created by ProcessAttributes and indexed by the attribute names). The Allowable argument is a set of those attribute names, which are valid for xmlTree.
ProcessAttributes can also perform rudimentary error checking when Options are included in the calling sequence. These Options specify whether to return an error or ignore any problems in the attributes.
The following options are permitted in the calling sequence.
required =set of strings
Specifies a set of strings, which must be a subset of the set Allowable. If an attribute in this set does not have an assigned value, an exception occurs.
name =symbol
Checks that xmlTree has the given name. The name must not have the _XML_ prefix.
error_addendum =string
The string specified by this option is appended to any error messages that are generated.
validate =truefalse
Specifies whether an error is returned if there is a ever a problem with an attribute (that is, either xmlTree contains an attribute which is not expected or it does not have a value for a required attribute).
The default setting for this option is false. Therefore, if this option is not specified or if validate = false is included in the calling sequence, then an error is not returned if a problem with an attribute occurs. Otherwise, if this option is specified as true, an error is returned when a problem with an attribute occurs.
Note: This does not mean that errors in arguments to ProcessAttributes are ignored. For example, if the required option has an attribute name that is not contained in the set Allowable, an exception still occurs.
defaults =equation or set of equations
Specifies the default attribute value for any attribute. Each equation must take the form , where attrName and attrValue are both strings. All left-hand sides of the equations must be members of the set Allowable.
Examples
See Also
XMLTools, XMLTools[Attributes], XMLTools[ParseString], XMLTools[ToString]
Download Help Document