final Attributes attributes = getTag().getAttributes();
return attributes.isRequested(name);
}
public boolean isRequested(final String name, final boolean defaultValue) {
final Attributes attributes = getTag().getAttributes();
return attributes.isRequested(name, defaultValue);
}