001package org.intellimate.izou.sdk;
002
003import org.intellimate.izou.sdk.addon.ZipFileManager;
004import ro.fortsoft.pf4j.Extension;
005import ro.fortsoft.pf4j.PluginWrapper;
006
007/**
008 * the ZipFileManager-Implementation used for the distribution
009 * @author LeanderK
010 * @version 1.0
011 */
012@Extension
013public class ZipFileManagerImpl extends ZipFileManager {
014    /**
015     * Constructor to be used by plugin manager for plugin instantiation.
016     * Your plugins have to provide constructor with this exact signature to
017     * be successfully loaded by manager.
018     *
019     * @param wrapper the PluginWrapper to assign the ZipFileManager to
020     */
021    public ZipFileManagerImpl(PluginWrapper wrapper) {
022        super(wrapper);
023    }
024}