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

com.freedomotic.environment.EnvironmentRepository Maven / Gradle / Ivy

/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
package com.freedomotic.environment;

import com.freedomotic.exceptions.RepositoryException;
import com.freedomotic.persistence.Repository;
import java.io.File;
import java.io.IOException;

/**
 *
 * @author enrico
 */
public interface EnvironmentRepository extends Repository {
    
    //TODO: remove it it's just temporary to ease the refactoring
    public void saveEnvironmentsToFolder(File folder) throws RepositoryException;
    public boolean loadEnvironmentsFromDir(File folder, boolean makeUnique) throws RepositoryException;
    public void saveAs(EnvironmentLogic env, File folder) throws IOException;
    public void init() throws RepositoryException;
    
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy