org.wickedsource.docxstamper.proxy.InterfaceWithImplementation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of docx-stamper Show documentation
Show all versions of docx-stamper Show documentation
Template engine for .docx documents.
package org.wickedsource.docxstamper.proxy;
import org.wickedsource.docxstamper.api.commentprocessor.ICommentProcessor;
class InterfaceWithImplementation {
private final Class> interfaceClass;
private final ICommentProcessor implementation;
public InterfaceWithImplementation(Class> interfaceClass,
ICommentProcessor implementation) {
this.interfaceClass = interfaceClass;
this.implementation = implementation;
}
public Class> getInterfaceClass() {
return interfaceClass;
}
public ICommentProcessor getImplementation() {
return implementation;
}
}