Changeset 3825
- Timestamp:
- 28/04/08 10:10:35 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TI02-CSML/trunk/csml/parser.py
r3680 r3825 344 344 csElement.__init__(self,**kwargs) 345 345 346 class csString(AssociationAttributeGroup, csElement): 346 class SRSReferenceGroup(csElement): 347 def __init__(self, **kwargs): 348 a =['srsName','srsDimension'] 349 addatts(self,a) 350 csElement.__init__(self,**kwargs) 351 352 class csString(AssociationAttributeGroup, SRSReferenceGroup, csElement): 347 353 def __init__(self, text=None,**kwargs): 348 354 #Needed so it can use xlink 349 355 addelems(self,[]) 350 356 AssociationAttributeGroup.__init__(self,**kwargs) 357 SRSReferenceGroup.__init__(self,**kwargs) 351 358 if text != None: 352 359 if type(text) is not str: … … 355 362 children={} 356 363 addchildren(self,children) 357 csElement.__init__(self,**kwargs)358 359 class SRSReferenceGroup(csElement):360 def __init__(self, **kwargs):361 a =['srsName','srsDimension']362 addatts(self,a)363 364 csElement.__init__(self,**kwargs) 364 365
Note: See TracChangeset
for help on using the changeset viewer.