if (n == null)
throw new SpeedoXMLError("Attribute name for tag field requested.");
String name = n.getNodeValue();
int dotIdx = name.lastIndexOf(".");
SpeedoField f = null;
SpeedoCommonField cf;
FieldContext fc = new FieldContext();
fc.fieldNode = fieldNode;
if(dotIdx != -1){
cf = moClass.inheritance.newSpeedoInheritedField(name);
} else {