return null;
}
byte[] pojo = POJOWriter.dump(clazz, m_name, getFieldList(), getMethodList(), m_handler);
Manipulator manipulator = new Manipulator(this.getClass().getClassLoader());
try {
manipulator.prepare(pojo);
byte[] newclazz = manipulator.manipulate(pojo);
m_manipulation = manipulator.getManipulationMetadata();
return newclazz;
} catch (IOException e) {
m_handler.error("An error occurs during the composite implementation creation : " + e.getMessage(), e);