* @param fieldName name of the field that Jinq should use in queries when it encounters the method call
* @param isPlural whether the method returns a single entity or a collection of them
*/
public void registerAssociationAttribute(Method m, String fieldName, boolean isPlural)
{
MetamodelUtilAttribute attrib = new MetamodelUtilAttribute(fieldName, true);
metamodel.insertAssociationAttribute(
new MethodSignature(
org.objectweb.asm.Type.getInternalName(m.getDeclaringClass()),
m.getName(),
org.objectweb.asm.Type.getMethodDescriptor(m)),