getAttribute method
dynamic
getAttribute(
- dynamic name,
- dynamic type
Implementation
getAttribute(name, type) {
var attributes = this.attributes;
// find attribute
for (var attribute in attributes) {
if (attribute.name == name) {
return attribute;
}
}
// create a new if no exist
var attribute = new NodeAttribute(name, type);
attributes.add(attribute);
return attribute;
}