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

com.katalon.platform.api.service.ProjectManager Maven / Gradle / Ivy

There is a newer version: 1.0.21
Show newest version
package com.katalon.platform.api.service;

import com.katalon.platform.api.Application;
import com.katalon.platform.api.model.ProjectEntity;

/**
 * ProjectManager is an interface that maintains list of ProjectEntity.
 * 

* The unique instance of ProjectManager can access by using {@link Application#getProjectManager()} * * @since 1.0.4 */ public interface ProjectManager { /** * @return the current working project. Can be null if there is no opened project. * * @since 1.0.4 */ ProjectEntity getCurrentProject(); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy