}
}
}
protected void logImplementedInterfaces() {
final GeneratorContext context = this.getGeneratorContext();
if (context.isDebugEnabled()) {
final Set<Type> interfaces = this.getInterfaces();
if (false == interfaces.isEmpty()) {
context.branch();
context.debug("implements");
final Iterator<Type> interfacesIterator = interfaces.iterator();
while (interfacesIterator.hasNext()) {
final Type interfacee = interfacesIterator.next();
context.debug(interfacee.getName());
}
context.unbranch();
}
}
}