示例#1
0
 def __init__(self, rtype, args):
     IfcEntity.__init__(self, rtype, args)
     self.name = args.pop()
     self.time_stamp = args.pop()
     self.author = args.pop()
     self.organization = args.pop()
     self.preprocessor_version = args.pop()
     self.originating_system = args.pop()
     self.authorization = args.pop()
示例#2
0
 def __str__(self):
     return "{sup}:governing_schema:{governing_schema}:determination_method:{determination_method}:governed_sections:{governed_sections}".format(
         sup=IfcEntity.__str__(self),
         governing_schema=self.governing_schema,
         determination_method=self.determination_method,
         governed_sections=self.governed_sections,
     )
示例#3
0
 def __str__(self):
     return "{sup}:name:{name}:time_stamp:{time_stamp}:author:{author}:organization:{organization}:preprocessor_version:{preprocessor_version}:originating_system:{originating_system}:authorization:{authorization}".format(
         sup=IfcEntity.__str__(self),
         name=self.name,
         time_stamp=self.time_stamp,
         author=self.author,
         organization=self.organization,
         preprocessor_version=self.preprocessor_version,
         originating_system=self.originating_system,
         authorization=self.authorization,
     )
示例#4
0
 def __init__(self, rtype, args):
     IfcEntity.__init__(self, rtype, args)
     self.governing_schema = args.pop()
     self.determination_method = args.pop()
     self.governed_sections = args.pop()
示例#5
0
 def __str__(self):
     return "{sup}:external_file_identifications:{external_file_identifications}".format(
         sup=IfcEntity.__str__(self),
         external_file_identifications=self.external_file_identifications,
     )
示例#6
0
 def __str__(self):
     return "{sup}:section:{section}:context_identifiers:{context_identifiers}".format(
         sup=IfcEntity.__str__(self),
         section=self.section,
         context_identifiers=self.context_identifiers,
     )
示例#7
0
 def __init__(self, rtype, args):
     IfcEntity.__init__(self, rtype, args)
     self.external_file_identifications = args.pop()
示例#8
0
 def __str__(self):
     return "{sup}:schema_identifiers:{schema_identifiers}".format(
         sup=IfcEntity.__str__(self),
         schema_identifiers=self.schema_identifiers,
     )
示例#9
0
 def __init__(self, rtype, args):
     IfcEntity.__init__(self, rtype, args)
     self.section = args.pop()
     self.context_identifiers = args.pop()
示例#10
0
 def __init__(self, rtype, args):
     IfcEntity.__init__(self, rtype, args)
     self.schema_identifiers = args.pop()
示例#11
0
 def __str__(self):
     return "{sup}:section:{section}:default_language:{default_language}".format(
         sup=IfcEntity.__str__(self),
         section=self.section,
         default_language=self.default_language,
     )
示例#12
0
 def __init__(self, rtype, args):
     IfcEntity.__init__(self, rtype, args)
     self.section = args.pop()
     self.default_language = args.pop()
示例#13
0
 def __str__(self):
     return "{sup}:description:{description}:implementation_level:{implementation_level}".format(
         sup=IfcEntity.__str__(self),
         description=self.description,
         implementation_level=self.implementation_level,
     )
示例#14
0
 def __init__(self, rtype, args):
     IfcEntity.__init__(self, rtype, args)
     self.description = args.pop()
     self.implementation_level = args.pop()