Package com.zycus.dotproject.factory

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

package com.zycus.dotproject.factory;

import com.zycus.dotproject.api.IProjectManager;
import com.zycus.dotproject.impl.ProjectManagerImpl;

public class ProjectManagerFactory {
  public static IProjectManager getProjectManager() {
    return new ProjectManagerImpl();
  }
}
TOP

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

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.