GeometryGym.Ifc.IfcExternalReference.setJSON C# (CSharp) Method

setJSON() protected method

protected setJSON ( JObject obj, BaseClassIfc host, HashSet processed ) : void
obj JObject
host BaseClassIfc
processed HashSet
return void
		protected override void setJSON(JObject obj, BaseClassIfc host, HashSet<int> processed)
		{
			base.setJSON(obj, host, processed);
			setAttribute(obj, "Location", Location);
			setAttribute(obj, "Identification", Identification);
			setAttribute(obj, "Name", Name);
			createArray(obj, "HasExternalReferences", HasExternalReferences, this, processed);
			createArray(obj, "HasConstraintRelationships", HasConstraintRelationships, this, processed);
			createArray(obj, "ExternalReferenceForResources", ExternalReferenceForResources, this, processed);
		}
	}