Package com.zycus.dotproject.factory

Source Code of com.zycus.dotproject.factory.FileManagerFactory

package com.zycus.dotproject.factory;

import com.zycus.dotproject.api.IFileManager;
import com.zycus.dotproject.impl.FileManagerImpl;

public final class FileManagerFactory {
  public static final IFileManager getFileManager() {
    return new FileManagerImpl();
  }
}
TOP

Related Classes of com.zycus.dotproject.factory.FileManagerFactory

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.