
nl.wietmazairac.bimql.set.attribute.SetAttributeSubIfcPresentationStyle Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bimql Show documentation
Show all versions of bimql Show documentation
BIMserver plugin provides the BimQL query language
package nl.wietmazairac.bimql.set.attribute;
import org.bimserver.models.ifc2x3tc1.IfcPresentationStyle;
public class SetAttributeSubIfcPresentationStyle {
// fields
private Object object;
private String attributeName;
private String attributeNewValue;
// constructors
public SetAttributeSubIfcPresentationStyle() {
}
public SetAttributeSubIfcPresentationStyle(Object object, String attributeName, String attributeNewValue) {
this.object = object;
this.attributeName = attributeName;
this.attributeNewValue = attributeNewValue;
}
// methods
public Object getObject() {
return object;
}
public void setObject(Object object) {
this.object = object;
}
public String getAttributeName() {
return attributeName;
}
public void setAttributeName(String attributeName) {
this.attributeName = attributeName;
}
public String getAttributeNewValue() {
return attributeNewValue;
}
public void setAttributeNewValue(String attributeNewValue) {
this.attributeNewValue = attributeNewValue;
}
public void setAttribute() {
if (attributeName.equals("Name")) {
//1NoEList
((IfcPresentationStyle) object).setName(attributeNewValue);
//1void
//1String
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy