Acsalarmpy.AcsAlarmSystem_xsd
index
/alma/ACS-2016.6/ACSSW/lib/python/site-packages/Acsalarmpy/AcsAlarmSystem_xsd.py

#*******************************************************************************
# ALMA - Atacama Large Millimeter Array
# Copyright (c) ESO - European Southern Observatory, 2011
# (in the framework of the ALMA collaboration).
# All rights reserved.

# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.

# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.

# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307  USA
#*******************************************************************************
#
# Generated Tue Oct  7 21:14:02 2008 by generateDS.py.
#

 
Modules
       
getopt
xml.sax.handler
xml.dom.minidom
sys

 
Classes
       
__builtin__.object
MixedContainer
SaxStackElement
action
alarm
alarm_category_definitions
alarm_category_linkType
alarm_category_link_definition_listType
alarm_definitionType
alarm_definition
alarm_definition_listType
alarm_definitions
alarm_system_configurationListType
building
category
category_definitionType
category_definition
category_definition_listType
category_definitions
cause
child
configuration_property
connection_timeout
consequence
description
floor
help_url
identifier
locationType
maintenance_maskType
mask_definition_listType
mask_definitions
mnemonic
mode_maskType
parent
piquetEmail
piquetGSM
position
priority
problem_description
reduction_definitions
reduction_linkType
reduction_link_definition_listType
responsible_id
room
source_definitionType
source_definition
source_definition_listType
source_definitions
source_name
system_name
threshold
thresholds
visual_fields
xml.sax.handler.ContentHandler
SaxSelectorHandler
Sax_alarm_definitionsHandler

 
class MixedContainer(__builtin__.object)
     Methods defined here:
__init__(self, category, content_type, name, value)
export(self, outfile, level, name)
exportLiteral(self, outfile, level, name)
exportSimple(self, outfile, level, name)
getCategory(self)
getContenttype(self, content_type)
getName(self)
getValue(self)

Data descriptors defined here:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes defined here:
CategoryComplex = 3
CategoryNone = 0
CategorySimple = 2
CategoryText = 1
TypeBoolean = 7
TypeDecimal = 5
TypeDouble = 6
TypeFloat = 4
TypeInteger = 3
TypeNone = 0
TypeString = 2
TypeText = 1

 
class SaxSelectorHandler(xml.sax.handler.ContentHandler)
    # SAX handler used to determine the top level element.
 
  Methods defined here:
__init__(self)
getTopElementName(self)
startElement(self, name, attrs)

Methods inherited from xml.sax.handler.ContentHandler:
characters(self, content)
Receive notification of character data.
 
The Parser will call this method to report each chunk of
character data. SAX parsers may return all contiguous
character data in a single chunk, or they may split it into
several chunks; however, all of the characters in any single
event must come from the same external entity so that the
Locator provides useful information.
endDocument(self)
Receive notification of the end of a document.
 
The SAX parser will invoke this method only once, and it will
be the last method invoked during the parse. The parser shall
not invoke this method until it has either abandoned parsing
(because of an unrecoverable error) or reached the end of
input.
endElement(self, name)
Signals the end of an element in non-namespace mode.
 
The name parameter contains the name of the element type, just
as with the startElement event.
endElementNS(self, name, qname)
Signals the end of an element in namespace mode.
 
The name parameter contains the name of the element type, just
as with the startElementNS event.
endPrefixMapping(self, prefix)
End the scope of a prefix-URI mapping.
 
See startPrefixMapping for details. This event will always
occur after the corresponding endElement event, but the order
of endPrefixMapping events is not otherwise guaranteed.
ignorableWhitespace(self, whitespace)
Receive notification of ignorable whitespace in element content.
 
Validating Parsers must use this method to report each chunk
of ignorable whitespace (see the W3C XML 1.0 recommendation,
section 2.10): non-validating parsers may also use this method
if they are capable of parsing and using content models.
 
SAX parsers may return all contiguous whitespace in a single
chunk, or they may split it into several chunks; however, all
of the characters in any single event must come from the same
external entity, so that the Locator provides useful
information.
 
The application must not attempt to read from the array
outside of the specified range.
processingInstruction(self, target, data)
Receive notification of a processing instruction.
 
The Parser will invoke this method once for each processing
instruction found: note that processing instructions may occur
before or after the main document element.
 
A SAX parser should never report an XML declaration (XML 1.0,
section 2.8) or a text declaration (XML 1.0, section 4.3.1)
using this method.
setDocumentLocator(self, locator)
Called by the parser to give the application a locator for
locating the origin of document events.
 
SAX parsers are strongly encouraged (though not absolutely
required) to supply a locator: if it does so, it must supply
the locator to the application by invoking this method before
invoking any of the other methods in the DocumentHandler
interface.
 
The locator allows the application to determine the end
position of any document-related event, even if the parser is
not reporting an error. Typically, the application will use
this information for reporting its own errors (such as
character content that does not match an application's
business rules). The information returned by the locator is
probably not sufficient for use with a search engine.
 
Note that the locator will return correct information only
during the invocation of the events in this interface. The
application should not attempt to use it at any other time.
skippedEntity(self, name)
Receive notification of a skipped entity.
 
The Parser will invoke this method once for each entity
skipped. Non-validating processors may skip entities if they
have not seen the declarations (because, for example, the
entity was declared in an external DTD subset). All processors
may skip external entities, depending on the values of the
http://xml.org/sax/features/external-general-entities and the
http://xml.org/sax/features/external-parameter-entities
properties.
startDocument(self)
Receive notification of the beginning of a document.
 
The SAX parser will invoke this method only once, before any
other methods in this interface or in DTDHandler (except for
setDocumentLocator).
startElementNS(self, name, qname, attrs)
Signals the start of an element in namespace mode.
 
The name parameter contains the name of the element type as a
(uri, localname) tuple, the qname parameter the raw XML 1.0
name used in the source document, and the attrs parameter
holds an instance of the Attributes class containing the
attributes of the element.
 
The uri part of the name tuple is None for elements which have
no namespace.
startPrefixMapping(self, prefix, uri)
Begin the scope of a prefix-URI Namespace mapping.
 
The information from this event is not necessary for normal
Namespace processing: the SAX XML reader will automatically
replace prefixes for element and attribute names when the
http://xml.org/sax/features/namespaces feature is true (the
default).
 
There are cases, however, when applications need to use
prefixes in character data or in attribute values, where they
cannot safely be expanded automatically; the
start/endPrefixMapping event supplies the information to the
application to expand prefixes in those contexts itself, if
necessary.
 
Note that start/endPrefixMapping events are not guaranteed to
be properly nested relative to each-other: all
startPrefixMapping events will occur before the corresponding
startElement event, and all endPrefixMapping events will occur
after the corresponding endElement event, but their order is
not guaranteed.

 
class SaxStackElement(__builtin__.object)
     Methods defined here:
__init__(self, name='', obj=None)

Data descriptors defined here:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

 
class Sax_alarm_definitionsHandler(xml.sax.handler.ContentHandler)
    # SAX handler
 
  Methods defined here:
__init__(self)
characters(self, chrs, start, end)
endElement(self, name)
getRoot(self)
reportError(self, mesg)
setDocumentLocator(self, locator)
showError(self, msg)
startElement(self, name, attrs)

Methods inherited from xml.sax.handler.ContentHandler:
endDocument(self)
Receive notification of the end of a document.
 
The SAX parser will invoke this method only once, and it will
be the last method invoked during the parse. The parser shall
not invoke this method until it has either abandoned parsing
(because of an unrecoverable error) or reached the end of
input.
endElementNS(self, name, qname)
Signals the end of an element in namespace mode.
 
The name parameter contains the name of the element type, just
as with the startElementNS event.
endPrefixMapping(self, prefix)
End the scope of a prefix-URI mapping.
 
See startPrefixMapping for details. This event will always
occur after the corresponding endElement event, but the order
of endPrefixMapping events is not otherwise guaranteed.
ignorableWhitespace(self, whitespace)
Receive notification of ignorable whitespace in element content.
 
Validating Parsers must use this method to report each chunk
of ignorable whitespace (see the W3C XML 1.0 recommendation,
section 2.10): non-validating parsers may also use this method
if they are capable of parsing and using content models.
 
SAX parsers may return all contiguous whitespace in a single
chunk, or they may split it into several chunks; however, all
of the characters in any single event must come from the same
external entity, so that the Locator provides useful
information.
 
The application must not attempt to read from the array
outside of the specified range.
processingInstruction(self, target, data)
Receive notification of a processing instruction.
 
The Parser will invoke this method once for each processing
instruction found: note that processing instructions may occur
before or after the main document element.
 
A SAX parser should never report an XML declaration (XML 1.0,
section 2.8) or a text declaration (XML 1.0, section 4.3.1)
using this method.
skippedEntity(self, name)
Receive notification of a skipped entity.
 
The Parser will invoke this method once for each entity
skipped. Non-validating processors may skip entities if they
have not seen the declarations (because, for example, the
entity was declared in an external DTD subset). All processors
may skip external entities, depending on the values of the
http://xml.org/sax/features/external-general-entities and the
http://xml.org/sax/features/external-parameter-entities
properties.
startDocument(self)
Receive notification of the beginning of a document.
 
The SAX parser will invoke this method only once, before any
other methods in this interface or in DTDHandler (except for
setDocumentLocator).
startElementNS(self, name, qname, attrs)
Signals the start of an element in namespace mode.
 
The name parameter contains the name of the element type as a
(uri, localname) tuple, the qname parameter the raw XML 1.0
name used in the source document, and the attrs parameter
holds an instance of the Attributes class containing the
attributes of the element.
 
The uri part of the name tuple is None for elements which have
no namespace.
startPrefixMapping(self, prefix, uri)
Begin the scope of a prefix-URI Namespace mapping.
 
The information from this event is not necessary for normal
Namespace processing: the SAX XML reader will automatically
replace prefixes for element and attribute names when the
http://xml.org/sax/features/namespaces feature is true (the
default).
 
There are cases, however, when applications need to use
prefixes in character data or in attribute values, where they
cannot safely be expanded automatically; the
start/endPrefixMapping event supplies the information to the
application to expand prefixes in those contexts itself, if
necessary.
 
Note that start/endPrefixMapping events are not guaranteed to
be properly nested relative to each-other: all
startPrefixMapping events will occur before the corresponding
startElement event, and all endPrefixMapping events will occur
after the corresponding endElement event, but their order is
not guaranteed.

 
class action(__builtin__.object)
     Methods defined here:
__init__(self, valueOf_='')
build(self, node_)
buildAttributes(self, attrs)
buildChildren(self, child_, nodeName_)
export(self, outfile, level, namespace_='', name_='action')
exportAttributes(self, outfile, level, namespace_='', name_='action')
exportChildren(self, outfile, level, namespace_='', name_='action')
exportLiteral(self, outfile, level, name_='action')
exportLiteralAttributes(self, outfile, level, name_)
exportLiteralChildren(self, outfile, level, name_)
getValueOf_(self)
setValueOf_(self, valueOf_)

Static methods defined here:
factory(*args_, **kwargs_)

Data descriptors defined here:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes defined here:
subclass = None
superclass = None

 
class alarm(__builtin__.object)
     Methods defined here:
__init__(self, alarm_definition=None)
build(self, node_)
buildAttributes(self, attrs)
buildChildren(self, child_, nodeName_)
export(self, outfile, level, namespace_='', name_='alarm')
exportAttributes(self, outfile, level, namespace_='', name_='alarm')
exportChildren(self, outfile, level, namespace_='', name_='alarm')
exportLiteral(self, outfile, level, name_='alarm')
exportLiteralAttributes(self, outfile, level, name_)
exportLiteralChildren(self, outfile, level, name_)
get_alarm_definition(self)
set_alarm_definition(self, alarm_definition)
validate_alarm_definition(self, value)

Static methods defined here:
factory(*args_, **kwargs_)

Data descriptors defined here:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes defined here:
subclass = None
superclass = None

 
class alarm_category_definitions(__builtin__.object)
     Methods defined here:
__init__(self, category_links_to_create=None, category_links_to_remove=None)
build(self, node_)
buildAttributes(self, attrs)
buildChildren(self, child_, nodeName_)
export(self, outfile, level, namespace_='', name_='alarm-category-definitions')
exportAttributes(self, outfile, level, namespace_='', name_='alarm-category-definitions')
exportChildren(self, outfile, level, namespace_='', name_='alarm-category-definitions')
exportLiteral(self, outfile, level, name_='alarm-category-definitions')
exportLiteralAttributes(self, outfile, level, name_)
exportLiteralChildren(self, outfile, level, name_)
get_category_links_to_create(self)
get_category_links_to_remove(self)
set_category_links_to_create(self, category_links_to_create)
set_category_links_to_remove(self, category_links_to_remove)

Static methods defined here:
factory(*args_, **kwargs_)

Data descriptors defined here:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes defined here:
subclass = None
superclass = None

 
class alarm_category_linkType(__builtin__.object)
     Methods defined here:
__init__(self, category=None, alarm=None)
build(self, node_)
buildAttributes(self, attrs)
buildChildren(self, child_, nodeName_)
export(self, outfile, level, namespace_='', name_='alarm-category-linkType')
exportAttributes(self, outfile, level, namespace_='', name_='alarm-category-linkType')
exportChildren(self, outfile, level, namespace_='', name_='alarm-category-linkType')
exportLiteral(self, outfile, level, name_='alarm-category-linkType')
exportLiteralAttributes(self, outfile, level, name_)
exportLiteralChildren(self, outfile, level, name_)
get_alarm(self)
get_category(self)
set_alarm(self, alarm)
set_category(self, category)

Static methods defined here:
factory(*args_, **kwargs_)

Data descriptors defined here:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes defined here:
subclass = None
superclass = None

 
class alarm_category_link_definition_listType(__builtin__.object)
     Methods defined here:
__init__(self, alarm_category_link=None)
add_alarm_category_link(self, value)
build(self, node_)
buildAttributes(self, attrs)
buildChildren(self, child_, nodeName_)
export(self, outfile, level, namespace_='', name_='alarm-category-link-definition-listType')
exportAttributes(self, outfile, level, namespace_='', name_='alarm-category-link-definition-listType')
exportChildren(self, outfile, level, namespace_='', name_='alarm-category-link-definition-listType')
exportLiteral(self, outfile, level, name_='alarm-category-link-definition-listType')
exportLiteralAttributes(self, outfile, level, name_)
exportLiteralChildren(self, outfile, level, name_)
get_alarm_category_link(self)
insert_alarm_category_link(self, index, value)
set_alarm_category_link(self, alarm_category_link)

Static methods defined here:
factory(*args_, **kwargs_)

Data descriptors defined here:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes defined here:
subclass = None
superclass = None

 
class alarm_definition(alarm_definitionType)
    
Method resolution order:
alarm_definition
alarm_definitionType
__builtin__.object

Methods defined here:
__init__(self, visual_fields=None, instant=False, cause='', action='', consequence='', priority='0', responsible_id='', piquetGSM='', help_url='', source_name='', location=None, piquetEmail='', fault_code='', fault_family='', fault_member='', valueOf_='')
build(self, node_)
buildAttributes(self, attrs)
buildChildren(self, child_, nodeName_)
export(self, outfile, level, namespace_='', name_='alarm-definition')
exportAttributes(self, outfile, level, namespace_='', name_='alarm-definition')
exportChildren(self, outfile, level, namespace_='', name_='alarm-definition')
exportLiteral(self, outfile, level, name_='alarm-definition')
exportLiteralAttributes(self, outfile, level, name_)
exportLiteralChildren(self, outfile, level, name_)
getValueOf_(self)
get_fault_code(self)
get_fault_family(self)
get_fault_member(self)
setValueOf_(self, valueOf_)
set_fault_code(self, fault_code)
set_fault_family(self, fault_family)
set_fault_member(self, fault_member)

Static methods defined here:
factory(*args_, **kwargs_)

Data and other attributes defined here:
subclass = None
superclass = <class 'Acsalarmpy.AcsAlarmSystem_xsd.alarm_definitionType'>

Methods inherited from alarm_definitionType:
get_action(self)
get_cause(self)
get_consequence(self)
get_help_url(self)
get_instant(self)
get_location(self)
get_piquetEmail(self)
get_piquetGSM(self)
get_priority(self)
get_responsible_id(self)
get_source_name(self)
get_visual_fields(self)
set_action(self, action)
set_cause(self, cause)
set_consequence(self, consequence)
set_help_url(self, help_url)
set_instant(self, instant)
set_location(self, location)
set_piquetEmail(self, piquetEmail)
set_piquetGSM(self, piquetGSM)
set_priority(self, priority)
set_responsible_id(self, responsible_id)
set_source_name(self, source_name)
set_visual_fields(self, visual_fields)
validate_action(self, value)
validate_cause(self, value)
validate_consequence(self, value)
validate_help_url(self, value)
validate_piquetEmail(self, value)
validate_piquetGSM(self, value)
validate_priority(self, value)
validate_responsible_id(self, value)
validate_source_name(self, value)

Data descriptors inherited from alarm_definitionType:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

 
class alarm_definitionType(__builtin__.object)
     Methods defined here:
__init__(self, visual_fields=None, instant=False, cause='', action='', consequence='', priority='0', responsible_id='', piquetGSM='', help_url='', source_name='', location=None, piquetEmail='')
build(self, node_)
buildAttributes(self, attrs)
buildChildren(self, child_, nodeName_)
export(self, outfile, level, namespace_='', name_='alarm-definitionType')
exportAttributes(self, outfile, level, namespace_='', name_='alarm-definitionType')
exportChildren(self, outfile, level, namespace_='', name_='alarm-definitionType')
exportLiteral(self, outfile, level, name_='alarm-definitionType')
exportLiteralAttributes(self, outfile, level, name_)
exportLiteralChildren(self, outfile, level, name_)
get_action(self)
get_cause(self)
get_consequence(self)
get_help_url(self)
get_instant(self)
get_location(self)
get_piquetEmail(self)
get_piquetGSM(self)
get_priority(self)
get_responsible_id(self)
get_source_name(self)
get_visual_fields(self)
set_action(self, action)
set_cause(self, cause)
set_consequence(self, consequence)
set_help_url(self, help_url)
set_instant(self, instant)
set_location(self, location)
set_piquetEmail(self, piquetEmail)
set_piquetGSM(self, piquetGSM)
set_priority(self, priority)
set_responsible_id(self, responsible_id)
set_source_name(self, source_name)
set_visual_fields(self, visual_fields)
validate_action(self, value)
validate_cause(self, value)
validate_consequence(self, value)
validate_help_url(self, value)
validate_piquetEmail(self, value)
validate_piquetGSM(self, value)
validate_priority(self, value)
validate_responsible_id(self, value)
validate_source_name(self, value)

Static methods defined here:
factory(*args_, **kwargs_)

Data descriptors defined here:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes defined here:
subclass = None
superclass = None

 
class alarm_definition_listType(__builtin__.object)
     Methods defined here:
__init__(self, alarm_definition=None)
add_alarm_definition(self, value)
build(self, node_)
buildAttributes(self, attrs)
buildChildren(self, child_, nodeName_)
export(self, outfile, level, namespace_='', name_='alarm-definition-listType')
exportAttributes(self, outfile, level, namespace_='', name_='alarm-definition-listType')
exportChildren(self, outfile, level, namespace_='', name_='alarm-definition-listType')
exportLiteral(self, outfile, level, name_='alarm-definition-listType')
exportLiteralAttributes(self, outfile, level, name_)
exportLiteralChildren(self, outfile, level, name_)
get_alarm_definition(self)
insert_alarm_definition(self, index, value)
set_alarm_definition(self, alarm_definition)
validate_alarm_definition(self, value)

Static methods defined here:
factory(*args_, **kwargs_)

Data descriptors defined here:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes defined here:
subclass = None
superclass = None

 
class alarm_definitions(__builtin__.object)
     Methods defined here:
__init__(self, alarms_to_create=None, alarms_to_update=None, alarms_to_remove=None)
build(self, node_)
buildAttributes(self, attrs)
buildChildren(self, child_, nodeName_)
export(self, outfile, level, namespace_='', name_='alarm-definitions')
exportAttributes(self, outfile, level, namespace_='', name_='alarm-definitions')
exportChildren(self, outfile, level, namespace_='', name_='alarm-definitions')
exportLiteral(self, outfile, level, name_='alarm-definitions')
exportLiteralAttributes(self, outfile, level, name_)
exportLiteralChildren(self, outfile, level, name_)
get_alarms_to_create(self)
get_alarms_to_remove(self)
get_alarms_to_update(self)
set_alarms_to_create(self, alarms_to_create)
set_alarms_to_remove(self, alarms_to_remove)
set_alarms_to_update(self, alarms_to_update)

Static methods defined here:
factory(*args_, **kwargs_)

Data descriptors defined here:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes defined here:
subclass = None
superclass = None

 
class alarm_system_configurationListType(__builtin__.object)
     Methods defined here:
__init__(self, configuration_property=None)
add_configuration_property(self, value)
build(self, node_)
buildAttributes(self, attrs)
buildChildren(self, child_, nodeName_)
export(self, outfile, level, namespace_='', name_='alarm-system-configurationListType')
exportAttributes(self, outfile, level, namespace_='', name_='alarm-system-configurationListType')
exportChildren(self, outfile, level, namespace_='', name_='alarm-system-configurationListType')
exportLiteral(self, outfile, level, name_='alarm-system-configurationListType')
exportLiteralAttributes(self, outfile, level, name_)
exportLiteralChildren(self, outfile, level, name_)
get_configuration_property(self)
insert_configuration_property(self, index, value)
set_configuration_property(self, configuration_property)
validate_configuration_property(self, value)

Static methods defined here:
factory(*args_, **kwargs_)

Data descriptors defined here:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes defined here:
subclass = None
superclass = None

 
class building(__builtin__.object)
     Methods defined here:
__init__(self, valueOf_='')
build(self, node_)
buildAttributes(self, attrs)
buildChildren(self, child_, nodeName_)
export(self, outfile, level, namespace_='', name_='building')
exportAttributes(self, outfile, level, namespace_='', name_='building')
exportChildren(self, outfile, level, namespace_='', name_='building')
exportLiteral(self, outfile, level, name_='building')
exportLiteralAttributes(self, outfile, level, name_)
exportLiteralChildren(self, outfile, level, name_)
getValueOf_(self)
setValueOf_(self, valueOf_)

Static methods defined here:
factory(*args_, **kwargs_)

Data descriptors defined here:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes defined here:
subclass = None
superclass = None

 
class category(__builtin__.object)
     Methods defined here:
__init__(self, category_definition=None)
build(self, node_)
buildAttributes(self, attrs)
buildChildren(self, child_, nodeName_)
export(self, outfile, level, namespace_='', name_='category')
exportAttributes(self, outfile, level, namespace_='', name_='category')
exportChildren(self, outfile, level, namespace_='', name_='category')
exportLiteral(self, outfile, level, name_='category')
exportLiteralAttributes(self, outfile, level, name_)
exportLiteralChildren(self, outfile, level, name_)
get_category_definition(self)
set_category_definition(self, category_definition)

Static methods defined here:
factory(*args_, **kwargs_)

Data descriptors defined here:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes defined here:
subclass = None
superclass = None

 
class category_definition(category_definitionType)
    
Method resolution order:
category_definition
category_definitionType
__builtin__.object

Methods defined here:
__init__(self, description='', path='', valueOf_='')
build(self, node_)
buildAttributes(self, attrs)
buildChildren(self, child_, nodeName_)
export(self, outfile, level, namespace_='', name_='category-definition')
exportAttributes(self, outfile, level, namespace_='', name_='category-definition')
exportChildren(self, outfile, level, namespace_='', name_='category-definition')
exportLiteral(self, outfile, level, name_='category-definition')
exportLiteralAttributes(self, outfile, level, name_)
exportLiteralChildren(self, outfile, level, name_)
getValueOf_(self)
get_path(self)
setValueOf_(self, valueOf_)
set_path(self, path)

Static methods defined here:
factory(*args_, **kwargs_)

Data and other attributes defined here:
subclass = None
superclass = <class 'Acsalarmpy.AcsAlarmSystem_xsd.category_definitionType'>

Methods inherited from category_definitionType:
get_description(self)
set_description(self, description)
validate_description(self, value)

Data descriptors inherited from category_definitionType:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

 
class category_definitionType(__builtin__.object)
     Methods defined here:
__init__(self, description='')
build(self, node_)
buildAttributes(self, attrs)
buildChildren(self, child_, nodeName_)
export(self, outfile, level, namespace_='', name_='category-definitionType')
exportAttributes(self, outfile, level, namespace_='', name_='category-definitionType')
exportChildren(self, outfile, level, namespace_='', name_='category-definitionType')
exportLiteral(self, outfile, level, name_='category-definitionType')
exportLiteralAttributes(self, outfile, level, name_)
exportLiteralChildren(self, outfile, level, name_)
get_description(self)
set_description(self, description)
validate_description(self, value)

Static methods defined here:
factory(*args_, **kwargs_)

Data descriptors defined here:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes defined here:
subclass = None
superclass = None

 
class category_definition_listType(__builtin__.object)
     Methods defined here:
__init__(self, category_definition=None)
add_category_definition(self, value)
build(self, node_)
buildAttributes(self, attrs)
buildChildren(self, child_, nodeName_)
export(self, outfile, level, namespace_='', name_='category-definition-listType')
exportAttributes(self, outfile, level, namespace_='', name_='category-definition-listType')
exportChildren(self, outfile, level, namespace_='', name_='category-definition-listType')
exportLiteral(self, outfile, level, name_='category-definition-listType')
exportLiteralAttributes(self, outfile, level, name_)
exportLiteralChildren(self, outfile, level, name_)
get_category_definition(self)
insert_category_definition(self, index, value)
set_category_definition(self, category_definition)

Static methods defined here:
factory(*args_, **kwargs_)

Data descriptors defined here:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes defined here:
subclass = None
superclass = None

 
class category_definitions(__builtin__.object)
     Methods defined here:
__init__(self, categories_to_create=None, categories_to_update=None, categories_to_remove=None)
build(self, node_)
buildAttributes(self, attrs)
buildChildren(self, child_, nodeName_)
export(self, outfile, level, namespace_='', name_='category-definitions')
exportAttributes(self, outfile, level, namespace_='', name_='category-definitions')
exportChildren(self, outfile, level, namespace_='', name_='category-definitions')
exportLiteral(self, outfile, level, name_='category-definitions')
exportLiteralAttributes(self, outfile, level, name_)
exportLiteralChildren(self, outfile, level, name_)
get_categories_to_create(self)
get_categories_to_remove(self)
get_categories_to_update(self)
set_categories_to_create(self, categories_to_create)
set_categories_to_remove(self, categories_to_remove)
set_categories_to_update(self, categories_to_update)

Static methods defined here:
factory(*args_, **kwargs_)

Data descriptors defined here:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes defined here:
subclass = None
superclass = None

 
class cause(__builtin__.object)
     Methods defined here:
__init__(self, valueOf_='')
build(self, node_)
buildAttributes(self, attrs)
buildChildren(self, child_, nodeName_)
export(self, outfile, level, namespace_='', name_='cause')
exportAttributes(self, outfile, level, namespace_='', name_='cause')
exportChildren(self, outfile, level, namespace_='', name_='cause')
exportLiteral(self, outfile, level, name_='cause')
exportLiteralAttributes(self, outfile, level, name_)
exportLiteralChildren(self, outfile, level, name_)
getValueOf_(self)
setValueOf_(self, valueOf_)

Static methods defined here:
factory(*args_, **kwargs_)

Data descriptors defined here:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes defined here:
subclass = None
superclass = None

 
class child(__builtin__.object)
     Methods defined here:
__init__(self, alarm_definition=None)
build(self, node_)
buildAttributes(self, attrs)
buildChildren(self, child_, nodeName_)
export(self, outfile, level, namespace_='', name_='child')
exportAttributes(self, outfile, level, namespace_='', name_='child')
exportChildren(self, outfile, level, namespace_='', name_='child')
exportLiteral(self, outfile, level, name_='child')
exportLiteralAttributes(self, outfile, level, name_)
exportLiteralChildren(self, outfile, level, name_)
get_alarm_definition(self)
set_alarm_definition(self, alarm_definition)
validate_alarm_definition(self, value)

Static methods defined here:
factory(*args_, **kwargs_)

Data descriptors defined here:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes defined here:
subclass = None
superclass = None

 
class configuration_property(__builtin__.object)
     Methods defined here:
__init__(self, name='', valueOf_='')
build(self, node_)
buildAttributes(self, attrs)
buildChildren(self, child_, nodeName_)
export(self, outfile, level, namespace_='', name_='configuration-property')
exportAttributes(self, outfile, level, namespace_='', name_='configuration-property')
exportChildren(self, outfile, level, namespace_='', name_='configuration-property')
exportLiteral(self, outfile, level, name_='configuration-property')
exportLiteralAttributes(self, outfile, level, name_)
exportLiteralChildren(self, outfile, level, name_)
getValueOf_(self)
get_name(self)
setValueOf_(self, valueOf_)
set_name(self, name)

Static methods defined here:
factory(*args_, **kwargs_)

Data descriptors defined here:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes defined here:
subclass = None
superclass = None

 
class connection_timeout(__builtin__.object)
     Methods defined here:
__init__(self, valueOf_='')
build(self, node_)
buildAttributes(self, attrs)
buildChildren(self, child_, nodeName_)
export(self, outfile, level, namespace_='', name_='connection-timeout')
exportAttributes(self, outfile, level, namespace_='', name_='connection-timeout')
exportChildren(self, outfile, level, namespace_='', name_='connection-timeout')
exportLiteral(self, outfile, level, name_='connection-timeout')
exportLiteralAttributes(self, outfile, level, name_)
exportLiteralChildren(self, outfile, level, name_)
getValueOf_(self)
setValueOf_(self, valueOf_)

Static methods defined here:
factory(*args_, **kwargs_)

Data descriptors defined here:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes defined here:
subclass = None
superclass = None

 
class consequence(__builtin__.object)
     Methods defined here:
__init__(self, valueOf_='')
build(self, node_)
buildAttributes(self, attrs)
buildChildren(self, child_, nodeName_)
export(self, outfile, level, namespace_='', name_='consequence')
exportAttributes(self, outfile, level, namespace_='', name_='consequence')
exportChildren(self, outfile, level, namespace_='', name_='consequence')
exportLiteral(self, outfile, level, name_='consequence')
exportLiteralAttributes(self, outfile, level, name_)
exportLiteralChildren(self, outfile, level, name_)
getValueOf_(self)
setValueOf_(self, valueOf_)

Static methods defined here:
factory(*args_, **kwargs_)

Data descriptors defined here:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes defined here:
subclass = None
superclass = None

 
class description(__builtin__.object)
     Methods defined here:
__init__(self, valueOf_='')
build(self, node_)
buildAttributes(self, attrs)
buildChildren(self, child_, nodeName_)
export(self, outfile, level, namespace_='', name_='description')
exportAttributes(self, outfile, level, namespace_='', name_='description')
exportChildren(self, outfile, level, namespace_='', name_='description')
exportLiteral(self, outfile, level, name_='description')
exportLiteralAttributes(self, outfile, level, name_)
exportLiteralChildren(self, outfile, level, name_)
getValueOf_(self)
setValueOf_(self, valueOf_)

Static methods defined here:
factory(*args_, **kwargs_)

Data descriptors defined here:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes defined here:
subclass = None
superclass = None

 
class floor(__builtin__.object)
     Methods defined here:
__init__(self, valueOf_='')
build(self, node_)
buildAttributes(self, attrs)
buildChildren(self, child_, nodeName_)
export(self, outfile, level, namespace_='', name_='floor')
exportAttributes(self, outfile, level, namespace_='', name_='floor')
exportChildren(self, outfile, level, namespace_='', name_='floor')
exportLiteral(self, outfile, level, name_='floor')
exportLiteralAttributes(self, outfile, level, name_)
exportLiteralChildren(self, outfile, level, name_)
getValueOf_(self)
setValueOf_(self, valueOf_)

Static methods defined here:
factory(*args_, **kwargs_)

Data descriptors defined here:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes defined here:
subclass = None
superclass = None

 
class help_url(__builtin__.object)
     Methods defined here:
__init__(self, valueOf_='')
build(self, node_)
buildAttributes(self, attrs)
buildChildren(self, child_, nodeName_)
export(self, outfile, level, namespace_='', name_='help-url')
exportAttributes(self, outfile, level, namespace_='', name_='help-url')
exportChildren(self, outfile, level, namespace_='', name_='help-url')
exportLiteral(self, outfile, level, name_='help-url')
exportLiteralAttributes(self, outfile, level, name_)
exportLiteralChildren(self, outfile, level, name_)
getValueOf_(self)
setValueOf_(self, valueOf_)

Static methods defined here:
factory(*args_, **kwargs_)

Data descriptors defined here:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes defined here:
subclass = None
superclass = None

 
class identifier(__builtin__.object)
     Methods defined here:
__init__(self, valueOf_='')
build(self, node_)
buildAttributes(self, attrs)
buildChildren(self, child_, nodeName_)
export(self, outfile, level, namespace_='', name_='identifier')
exportAttributes(self, outfile, level, namespace_='', name_='identifier')
exportChildren(self, outfile, level, namespace_='', name_='identifier')
exportLiteral(self, outfile, level, name_='identifier')
exportLiteralAttributes(self, outfile, level, name_)
exportLiteralChildren(self, outfile, level, name_)
getValueOf_(self)
setValueOf_(self, valueOf_)

Static methods defined here:
factory(*args_, **kwargs_)

Data descriptors defined here:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes defined here:
subclass = None
superclass = None

 
class locationType(__builtin__.object)
     Methods defined here:
__init__(self, building='', floor='', room='', mnemonic='', position='')
build(self, node_)
buildAttributes(self, attrs)
buildChildren(self, child_, nodeName_)
export(self, outfile, level, namespace_='', name_='locationType')
exportAttributes(self, outfile, level, namespace_='', name_='locationType')
exportChildren(self, outfile, level, namespace_='', name_='locationType')
exportLiteral(self, outfile, level, name_='locationType')
exportLiteralAttributes(self, outfile, level, name_)
exportLiteralChildren(self, outfile, level, name_)
get_building(self)
get_floor(self)
get_mnemonic(self)
get_position(self)
get_room(self)
set_building(self, building)
set_floor(self, floor)
set_mnemonic(self, mnemonic)
set_position(self, position)
set_room(self, room)
validate_building(self, value)
validate_floor(self, value)
validate_mnemonic(self, value)
validate_position(self, value)
validate_room(self, value)

Static methods defined here:
factory(*args_, **kwargs_)

Data descriptors defined here:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes defined here:
subclass = None
superclass = None

 
class maintenance_maskType(__builtin__.object)
     Methods defined here:
__init__(self, to='', fromxx='', alarm_definition=None)
build(self, node_)
buildAttributes(self, attrs)
buildChildren(self, child_, nodeName_)
export(self, outfile, level, namespace_='', name_='maintenance-maskType')
exportAttributes(self, outfile, level, namespace_='', name_='maintenance-maskType')
exportChildren(self, outfile, level, namespace_='', name_='maintenance-maskType')
exportLiteral(self, outfile, level, name_='maintenance-maskType')
exportLiteralAttributes(self, outfile, level, name_)
exportLiteralChildren(self, outfile, level, name_)
get_alarm_definition(self)
get_from(self)
get_to(self)
set_alarm_definition(self, alarm_definition)
set_from(self, fromxx)
set_to(self, to)
validate_alarm_definition(self, value)

Static methods defined here:
factory(*args_, **kwargs_)

Data descriptors defined here:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes defined here:
subclass = None
superclass = None

 
class mask_definition_listType(__builtin__.object)
     Methods defined here:
__init__(self, maintenance_mask=None, mode_mask=None)
add_maintenance_mask(self, value)
add_mode_mask(self, value)
build(self, node_)
buildAttributes(self, attrs)
buildChildren(self, child_, nodeName_)
export(self, outfile, level, namespace_='', name_='mask-definition-listType')
exportAttributes(self, outfile, level, namespace_='', name_='mask-definition-listType')
exportChildren(self, outfile, level, namespace_='', name_='mask-definition-listType')
exportLiteral(self, outfile, level, name_='mask-definition-listType')
exportLiteralAttributes(self, outfile, level, name_)
exportLiteralChildren(self, outfile, level, name_)
get_maintenance_mask(self)
get_mode_mask(self)
insert_maintenance_mask(self, index, value)
insert_mode_mask(self, index, value)
set_maintenance_mask(self, maintenance_mask)
set_mode_mask(self, mode_mask)

Static methods defined here:
factory(*args_, **kwargs_)

Data descriptors defined here:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes defined here:
subclass = None
superclass = None

 
class mask_definitions(__builtin__.object)
     Methods defined here:
__init__(self, masks_to_create=None, masks_to_remove=None)
build(self, node_)
buildAttributes(self, attrs)
buildChildren(self, child_, nodeName_)
export(self, outfile, level, namespace_='', name_='mask-definitions')
exportAttributes(self, outfile, level, namespace_='', name_='mask-definitions')
exportChildren(self, outfile, level, namespace_='', name_='mask-definitions')
exportLiteral(self, outfile, level, name_='mask-definitions')
exportLiteralAttributes(self, outfile, level, name_)
exportLiteralChildren(self, outfile, level, name_)
get_masks_to_create(self)
get_masks_to_remove(self)
set_masks_to_create(self, masks_to_create)
set_masks_to_remove(self, masks_to_remove)

Static methods defined here:
factory(*args_, **kwargs_)

Data descriptors defined here:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes defined here:
subclass = None
superclass = None

 
class mnemonic(__builtin__.object)
     Methods defined here:
__init__(self, valueOf_='')
build(self, node_)
buildAttributes(self, attrs)
buildChildren(self, child_, nodeName_)
export(self, outfile, level, namespace_='', name_='mnemonic')
exportAttributes(self, outfile, level, namespace_='', name_='mnemonic')
exportChildren(self, outfile, level, namespace_='', name_='mnemonic')
exportLiteral(self, outfile, level, name_='mnemonic')
exportLiteralAttributes(self, outfile, level, name_)
exportLiteralChildren(self, outfile, level, name_)
getValueOf_(self)
setValueOf_(self, valueOf_)

Static methods defined here:
factory(*args_, **kwargs_)

Data descriptors defined here:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes defined here:
subclass = None
superclass = None

 
class mode_maskType(__builtin__.object)
     Methods defined here:
__init__(self, machine_mode='', alarm_definition=None)
build(self, node_)
buildAttributes(self, attrs)
buildChildren(self, child_, nodeName_)
export(self, outfile, level, namespace_='', name_='mode-maskType')
exportAttributes(self, outfile, level, namespace_='', name_='mode-maskType')
exportChildren(self, outfile, level, namespace_='', name_='mode-maskType')
exportLiteral(self, outfile, level, name_='mode-maskType')
exportLiteralAttributes(self, outfile, level, name_)
exportLiteralChildren(self, outfile, level, name_)
get_alarm_definition(self)
get_machine_mode(self)
set_alarm_definition(self, alarm_definition)
set_machine_mode(self, machine_mode)
validate_alarm_definition(self, value)

Static methods defined here:
factory(*args_, **kwargs_)

Data descriptors defined here:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes defined here:
subclass = None
superclass = None

 
class parent(__builtin__.object)
     Methods defined here:
__init__(self, alarm_definition=None)
build(self, node_)
buildAttributes(self, attrs)
buildChildren(self, child_, nodeName_)
export(self, outfile, level, namespace_='', name_='parent')
exportAttributes(self, outfile, level, namespace_='', name_='parent')
exportChildren(self, outfile, level, namespace_='', name_='parent')
exportLiteral(self, outfile, level, name_='parent')
exportLiteralAttributes(self, outfile, level, name_)
exportLiteralChildren(self, outfile, level, name_)
get_alarm_definition(self)
set_alarm_definition(self, alarm_definition)
validate_alarm_definition(self, value)

Static methods defined here:
factory(*args_, **kwargs_)

Data descriptors defined here:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes defined here:
subclass = None
superclass = None

 
class piquetEmail(__builtin__.object)
     Methods defined here:
__init__(self, valueOf_='')
build(self, node_)
buildAttributes(self, attrs)
buildChildren(self, child_, nodeName_)
export(self, outfile, level, namespace_='', name_='piquetEmail')
exportAttributes(self, outfile, level, namespace_='', name_='piquetEmail')
exportChildren(self, outfile, level, namespace_='', name_='piquetEmail')
exportLiteral(self, outfile, level, name_='piquetEmail')
exportLiteralAttributes(self, outfile, level, name_)
exportLiteralChildren(self, outfile, level, name_)
getValueOf_(self)
setValueOf_(self, valueOf_)

Static methods defined here:
factory(*args_, **kwargs_)

Data descriptors defined here:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes defined here:
subclass = None
superclass = None

 
class piquetGSM(__builtin__.object)
     Methods defined here:
__init__(self, valueOf_='')
build(self, node_)
buildAttributes(self, attrs)
buildChildren(self, child_, nodeName_)
export(self, outfile, level, namespace_='', name_='piquetGSM')
exportAttributes(self, outfile, level, namespace_='', name_='piquetGSM')
exportChildren(self, outfile, level, namespace_='', name_='piquetGSM')
exportLiteral(self, outfile, level, name_='piquetGSM')
exportLiteralAttributes(self, outfile, level, name_)
exportLiteralChildren(self, outfile, level, name_)
getValueOf_(self)
setValueOf_(self, valueOf_)

Static methods defined here:
factory(*args_, **kwargs_)

Data descriptors defined here:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes defined here:
subclass = None
superclass = None

 
class position(__builtin__.object)
     Methods defined here:
__init__(self, valueOf_='')
build(self, node_)
buildAttributes(self, attrs)
buildChildren(self, child_, nodeName_)
export(self, outfile, level, namespace_='', name_='position')
exportAttributes(self, outfile, level, namespace_='', name_='position')
exportChildren(self, outfile, level, namespace_='', name_='position')
exportLiteral(self, outfile, level, name_='position')
exportLiteralAttributes(self, outfile, level, name_)
exportLiteralChildren(self, outfile, level, name_)
getValueOf_(self)
setValueOf_(self, valueOf_)

Static methods defined here:
factory(*args_, **kwargs_)

Data descriptors defined here:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes defined here:
subclass = None
superclass = None

 
class priority(__builtin__.object)
     Methods defined here:
__init__(self, valueOf_='')
build(self, node_)
buildAttributes(self, attrs)
buildChildren(self, child_, nodeName_)
export(self, outfile, level, namespace_='', name_='priority')
exportAttributes(self, outfile, level, namespace_='', name_='priority')
exportChildren(self, outfile, level, namespace_='', name_='priority')
exportLiteral(self, outfile, level, name_='priority')
exportLiteralAttributes(self, outfile, level, name_)
exportLiteralChildren(self, outfile, level, name_)
getValueOf_(self)
setValueOf_(self, valueOf_)

Static methods defined here:
factory(*args_, **kwargs_)

Data descriptors defined here:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes defined here:
subclass = None
superclass = None

 
class problem_description(__builtin__.object)
     Methods defined here:
__init__(self, valueOf_='')
build(self, node_)
buildAttributes(self, attrs)
buildChildren(self, child_, nodeName_)
export(self, outfile, level, namespace_='', name_='problem-description')
exportAttributes(self, outfile, level, namespace_='', name_='problem-description')
exportChildren(self, outfile, level, namespace_='', name_='problem-description')
exportLiteral(self, outfile, level, name_='problem-description')
exportLiteralAttributes(self, outfile, level, name_)
exportLiteralChildren(self, outfile, level, name_)
getValueOf_(self)
setValueOf_(self, valueOf_)

Static methods defined here:
factory(*args_, **kwargs_)

Data descriptors defined here:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes defined here:
subclass = None
superclass = None

 
class reduction_definitions(__builtin__.object)
     Methods defined here:
__init__(self, links_to_create=None, links_to_remove=None, thresholds=None)
build(self, node_)
buildAttributes(self, attrs)
buildChildren(self, child_, nodeName_)
export(self, outfile, level, namespace_='', name_='reduction-definitions')
exportAttributes(self, outfile, level, namespace_='', name_='reduction-definitions')
exportChildren(self, outfile, level, namespace_='', name_='reduction-definitions')
exportLiteral(self, outfile, level, name_='reduction-definitions')
exportLiteralAttributes(self, outfile, level, name_)
exportLiteralChildren(self, outfile, level, name_)
get_links_to_create(self)
get_links_to_remove(self)
get_thresholds(self)
set_links_to_create(self, links_to_create)
set_links_to_remove(self, links_to_remove)
set_thresholds(self, thresholds)

Static methods defined here:
factory(*args_, **kwargs_)

Data descriptors defined here:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes defined here:
subclass = None
superclass = None

 
class reduction_linkType(__builtin__.object)
     Methods defined here:
__init__(self, typexx='', parent=None, child=None)
build(self, node_)
buildAttributes(self, attrs)
buildChildren(self, child_, nodeName_)
export(self, outfile, level, namespace_='', name_='reduction-linkType')
exportAttributes(self, outfile, level, namespace_='', name_='reduction-linkType')
exportChildren(self, outfile, level, namespace_='', name_='reduction-linkType')
exportLiteral(self, outfile, level, name_='reduction-linkType')
exportLiteralAttributes(self, outfile, level, name_)
exportLiteralChildren(self, outfile, level, name_)
get_child(self)
get_parent(self)
get_type(self)
set_child(self, child)
set_parent(self, parent)
set_type(self, typexx)

Static methods defined here:
factory(*args_, **kwargs_)

Data descriptors defined here:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes defined here:
subclass = None
superclass = None

 
class reduction_link_definition_listType(__builtin__.object)
     Methods defined here:
__init__(self, reduction_link=None)
add_reduction_link(self, value)
build(self, node_)
buildAttributes(self, attrs)
buildChildren(self, child_, nodeName_)
export(self, outfile, level, namespace_='', name_='reduction-link-definition-listType')
exportAttributes(self, outfile, level, namespace_='', name_='reduction-link-definition-listType')
exportChildren(self, outfile, level, namespace_='', name_='reduction-link-definition-listType')
exportLiteral(self, outfile, level, name_='reduction-link-definition-listType')
exportLiteralAttributes(self, outfile, level, name_)
exportLiteralChildren(self, outfile, level, name_)
get_reduction_link(self)
insert_reduction_link(self, index, value)
set_reduction_link(self, reduction_link)

Static methods defined here:
factory(*args_, **kwargs_)

Data descriptors defined here:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes defined here:
subclass = None
superclass = None

 
class responsible_id(__builtin__.object)
     Methods defined here:
__init__(self, valueOf_='')
build(self, node_)
buildAttributes(self, attrs)
buildChildren(self, child_, nodeName_)
export(self, outfile, level, namespace_='', name_='responsible-id')
exportAttributes(self, outfile, level, namespace_='', name_='responsible-id')
exportChildren(self, outfile, level, namespace_='', name_='responsible-id')
exportLiteral(self, outfile, level, name_='responsible-id')
exportLiteralAttributes(self, outfile, level, name_)
exportLiteralChildren(self, outfile, level, name_)
getValueOf_(self)
setValueOf_(self, valueOf_)

Static methods defined here:
factory(*args_, **kwargs_)

Data descriptors defined here:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes defined here:
subclass = None
superclass = None

 
class room(__builtin__.object)
     Methods defined here:
__init__(self, valueOf_='')
build(self, node_)
buildAttributes(self, attrs)
buildChildren(self, child_, nodeName_)
export(self, outfile, level, namespace_='', name_='room')
exportAttributes(self, outfile, level, namespace_='', name_='room')
exportChildren(self, outfile, level, namespace_='', name_='room')
exportLiteral(self, outfile, level, name_='room')
exportLiteralAttributes(self, outfile, level, name_)
exportLiteralChildren(self, outfile, level, name_)
getValueOf_(self)
setValueOf_(self, valueOf_)

Static methods defined here:
factory(*args_, **kwargs_)

Data descriptors defined here:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes defined here:
subclass = None
superclass = None

 
class source_definition(source_definitionType)
    
Method resolution order:
source_definition
source_definitionType
__builtin__.object

Methods defined here:
__init__(self, description='', connection_timeout='', responsible_id='', name='', valueOf_='')
build(self, node_)
buildAttributes(self, attrs)
buildChildren(self, child_, nodeName_)
export(self, outfile, level, namespace_='', name_='source-definition')
exportAttributes(self, outfile, level, namespace_='', name_='source-definition')
exportChildren(self, outfile, level, namespace_='', name_='source-definition')
exportLiteral(self, outfile, level, name_='source-definition')
exportLiteralAttributes(self, outfile, level, name_)
exportLiteralChildren(self, outfile, level, name_)
getValueOf_(self)
get_name(self)
setValueOf_(self, valueOf_)
set_name(self, name)

Static methods defined here:
factory(*args_, **kwargs_)

Data and other attributes defined here:
subclass = None
superclass = <class 'Acsalarmpy.AcsAlarmSystem_xsd.source_definitionType'>

Methods inherited from source_definitionType:
get_connection_timeout(self)
get_description(self)
get_responsible_id(self)
set_connection_timeout(self, connection_timeout)
set_description(self, description)
set_responsible_id(self, responsible_id)
validate_connection_timeout(self, value)
validate_description(self, value)
validate_responsible_id(self, value)

Data descriptors inherited from source_definitionType:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

 
class source_definitionType(__builtin__.object)
     Methods defined here:
__init__(self, description='', connection_timeout='', responsible_id='')
build(self, node_)
buildAttributes(self, attrs)
buildChildren(self, child_, nodeName_)
export(self, outfile, level, namespace_='', name_='source-definitionType')
exportAttributes(self, outfile, level, namespace_='', name_='source-definitionType')
exportChildren(self, outfile, level, namespace_='', name_='source-definitionType')
exportLiteral(self, outfile, level, name_='source-definitionType')
exportLiteralAttributes(self, outfile, level, name_)
exportLiteralChildren(self, outfile, level, name_)
get_connection_timeout(self)
get_description(self)
get_responsible_id(self)
set_connection_timeout(self, connection_timeout)
set_description(self, description)
set_responsible_id(self, responsible_id)
validate_connection_timeout(self, value)
validate_description(self, value)
validate_responsible_id(self, value)

Static methods defined here:
factory(*args_, **kwargs_)

Data descriptors defined here:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes defined here:
subclass = None
superclass = None

 
class source_definition_listType(__builtin__.object)
     Methods defined here:
__init__(self, source_definition=None)
add_source_definition(self, value)
build(self, node_)
buildAttributes(self, attrs)
buildChildren(self, child_, nodeName_)
export(self, outfile, level, namespace_='', name_='source-definition-listType')
exportAttributes(self, outfile, level, namespace_='', name_='source-definition-listType')
exportChildren(self, outfile, level, namespace_='', name_='source-definition-listType')
exportLiteral(self, outfile, level, name_='source-definition-listType')
exportLiteralAttributes(self, outfile, level, name_)
exportLiteralChildren(self, outfile, level, name_)
get_source_definition(self)
insert_source_definition(self, index, value)
set_source_definition(self, source_definition)
validate_source_definition(self, value)

Static methods defined here:
factory(*args_, **kwargs_)

Data descriptors defined here:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes defined here:
subclass = None
superclass = None

 
class source_definitions(__builtin__.object)
     Methods defined here:
__init__(self, sources_to_create=None, sources_to_update=None, sources_to_remove=None)
build(self, node_)
buildAttributes(self, attrs)
buildChildren(self, child_, nodeName_)
export(self, outfile, level, namespace_='', name_='source-definitions')
exportAttributes(self, outfile, level, namespace_='', name_='source-definitions')
exportChildren(self, outfile, level, namespace_='', name_='source-definitions')
exportLiteral(self, outfile, level, name_='source-definitions')
exportLiteralAttributes(self, outfile, level, name_)
exportLiteralChildren(self, outfile, level, name_)
get_sources_to_create(self)
get_sources_to_remove(self)
get_sources_to_update(self)
set_sources_to_create(self, sources_to_create)
set_sources_to_remove(self, sources_to_remove)
set_sources_to_update(self, sources_to_update)

Static methods defined here:
factory(*args_, **kwargs_)

Data descriptors defined here:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes defined here:
subclass = None
superclass = None

 
class source_name(__builtin__.object)
     Methods defined here:
__init__(self, valueOf_='')
build(self, node_)
buildAttributes(self, attrs)
buildChildren(self, child_, nodeName_)
export(self, outfile, level, namespace_='', name_='source-name')
exportAttributes(self, outfile, level, namespace_='', name_='source-name')
exportChildren(self, outfile, level, namespace_='', name_='source-name')
exportLiteral(self, outfile, level, name_='source-name')
exportLiteralAttributes(self, outfile, level, name_)
exportLiteralChildren(self, outfile, level, name_)
getValueOf_(self)
setValueOf_(self, valueOf_)

Static methods defined here:
factory(*args_, **kwargs_)

Data descriptors defined here:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes defined here:
subclass = None
superclass = None

 
class system_name(__builtin__.object)
     Methods defined here:
__init__(self, valueOf_='')
build(self, node_)
buildAttributes(self, attrs)
buildChildren(self, child_, nodeName_)
export(self, outfile, level, namespace_='', name_='system-name')
exportAttributes(self, outfile, level, namespace_='', name_='system-name')
exportChildren(self, outfile, level, namespace_='', name_='system-name')
exportLiteral(self, outfile, level, name_='system-name')
exportLiteralAttributes(self, outfile, level, name_)
exportLiteralChildren(self, outfile, level, name_)
getValueOf_(self)
setValueOf_(self, valueOf_)

Static methods defined here:
factory(*args_, **kwargs_)

Data descriptors defined here:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes defined here:
subclass = None
superclass = None

 
class threshold(__builtin__.object)
     Methods defined here:
__init__(self, value=-1, alarm_definition=None)
build(self, node_)
buildAttributes(self, attrs)
buildChildren(self, child_, nodeName_)
export(self, outfile, level, namespace_='', name_='threshold')
exportAttributes(self, outfile, level, namespace_='', name_='threshold')
exportChildren(self, outfile, level, namespace_='', name_='threshold')
exportLiteral(self, outfile, level, name_='threshold')
exportLiteralAttributes(self, outfile, level, name_)
exportLiteralChildren(self, outfile, level, name_)
get_alarm_definition(self)
get_value(self)
set_alarm_definition(self, alarm_definition)
set_value(self, value)
validate_alarm_definition(self, value)

Static methods defined here:
factory(*args_, **kwargs_)

Data descriptors defined here:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes defined here:
subclass = None
superclass = None

 
class thresholds(__builtin__.object)
     Methods defined here:
__init__(self, threshold=None)
add_threshold(self, value)
build(self, node_)
buildAttributes(self, attrs)
buildChildren(self, child_, nodeName_)
export(self, outfile, level, namespace_='', name_='thresholds')
exportAttributes(self, outfile, level, namespace_='', name_='thresholds')
exportChildren(self, outfile, level, namespace_='', name_='thresholds')
exportLiteral(self, outfile, level, name_='thresholds')
exportLiteralAttributes(self, outfile, level, name_)
exportLiteralChildren(self, outfile, level, name_)
get_threshold(self)
insert_threshold(self, index, value)
set_threshold(self, threshold)

Static methods defined here:
factory(*args_, **kwargs_)

Data descriptors defined here:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes defined here:
subclass = None
superclass = None

 
class visual_fields(__builtin__.object)
     Methods defined here:
__init__(self, system_name='', identifier='', problem_description='')
build(self, node_)
buildAttributes(self, attrs)
buildChildren(self, child_, nodeName_)
export(self, outfile, level, namespace_='', name_='visual-fields')
exportAttributes(self, outfile, level, namespace_='', name_='visual-fields')
exportChildren(self, outfile, level, namespace_='', name_='visual-fields')
exportLiteral(self, outfile, level, name_='visual-fields')
exportLiteralAttributes(self, outfile, level, name_)
exportLiteralChildren(self, outfile, level, name_)
get_identifier(self)
get_problem_description(self)
get_system_name(self)
set_identifier(self, identifier)
set_problem_description(self, problem_description)
set_system_name(self, system_name)
validate_identifier(self, value)
validate_problem_description(self, value)
validate_system_name(self, value)

Static methods defined here:
factory(*args_, **kwargs_)

Data descriptors defined here:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)

Data and other attributes defined here:
subclass = None
superclass = None

 
Functions
       
main()
parse(inFileName)
parseLiteral(inFileName)
parseSelect(inFileName)
parseString(inString)
quote_attrib(inStr)
quote_python(inStr)
quote_xml(inStr)
saxParse(inFileName)
saxParseString(inString)
showIndent(outfile, level)
usage()

 
Data
        USAGE_TEXT = '\nUsage: python <Parser>.py [ -s ] <in_xml_file>\n... Use the SAX parser, not the minidom parser.\n'