All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.wickedsource.docxstamper.proxy.InterfaceWithImplementation Maven / Gradle / Ivy

There is a newer version: 1.2.2
Show newest version
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;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy