All Downloads are FREE. Search and download functionalities are using the official Maven repository.

nl.wietmazairac.bimql.get.attribute.GetAttributeSubIfcDocumentReference Maven / Gradle / Ivy

There is a newer version: 0.0.5
Show newest version
package nl.wietmazairac.bimql.get.attribute;

import java.util.ArrayList;

import org.bimserver.models.ifc2x3tc1.IfcDocumentReference;

public class GetAttributeSubIfcDocumentReference {
	// fields
	private Object object;
	private String string;

	// constructors
	public GetAttributeSubIfcDocumentReference(Object object, String string) {
		this.object = object;
		this.string = string;
	}

	// methods
	public Object getObject() {
		return object;
	}

	public void setObject(Object object) {
		this.object = object;
	}

	public String getString() {
		return string;
	}

	public void setString(String string) {
		this.string = string;
	}

	public ArrayList getResult() {
	ArrayList resultList = new ArrayList();
		if (string.equals("ReferenceToDocument")) {
			//3xxx
			for (int i = 0; i < ((IfcDocumentReference) object).getReferenceToDocument().size(); i++) {
				resultList.add(((IfcDocumentReference) object).getReferenceToDocument().get(i));
			}
			 //1EList
		}
		return resultList;
	}
}