jclass.addMethod(jMethod);
JSourceCode jsc = jMethod.getSourceCode();
jsc.add("if ( this == obj )");
jsc.indent();
jsc.add("return true;");
jsc.unindent();
if (jclass.getSuperClassQualifiedName() != null) {
jsc.add("");
jsc.add("if (super.equals(obj)==false)");
jsc.indent();
jsc.add("return false;");