System.out.println( "Changed " + oldConst.toString() + " to " + newConst.toString() );
retval = false;
}
}
// Attributes
Attribute newAttributes[] = nf.getAttributes();
Attribute oldAttributes[] = of.getAttributes();
int oldAttributesLength = oldAttributes.length;
if( oldAttributesLength != newAttributes.length ) {
System.out.println( "Number of field attributes changend (old: " + oldAttributesLength + " new: " + newAttributes.length + ")" );
retval = false;
}
else {
for( int j = 0; j < oldAttributesLength; j++ ) {
Attribute oldAttr = oldAttributes[j];
Attribute newAttr = newAttributes[j];
}
}
}
}
return retval;