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

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

The newest version!
package nl.wietmazairac.bimql.get.attribute;

import java.util.ArrayList;

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

	// constructors
	public GetAttributeSubIfcTopologicalRepresentationItem(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();
		return resultList;
	}
}