Ejemplo n.º 1
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,
     )
Ejemplo n.º 2
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,
     )
Ejemplo n.º 3
0
 def __str__(self):
     return "{sup}:external_file_identifications:{external_file_identifications}".format(
         sup=IfcEntity.__str__(self),
         external_file_identifications=self.external_file_identifications,
     )
Ejemplo n.º 4
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,
     )
Ejemplo n.º 5
0
 def __str__(self):
     return "{sup}:schema_identifiers:{schema_identifiers}".format(
         sup=IfcEntity.__str__(self),
         schema_identifiers=self.schema_identifiers,
     )
Ejemplo n.º 6
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,
     )
Ejemplo n.º 7
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,
     )