return null;
}
if (rowIndex >= this.attributes.size()) {
return null;
}
AXFetchRequestAttribute attribute = (AXFetchRequestAttribute) this.attributes.get(rowIndex);
switch (columnIndex) {
case 0:
return attribute.getAttributeType();
case 1:
return attribute.getAlias();
case 2:
return attribute.isRequired();
case 3:
return attribute.isOptional();
default:
return null;
}
}