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

com.structurizr.io.WorkspaceReader Maven / Gradle / Ivy

There is a newer version: 3.1.0
Show newest version
package com.structurizr.io;

import com.structurizr.Workspace;

import java.io.Reader;

public interface WorkspaceReader {

    /**
     * Reads and parses a workspace definition.
     *
     * @param reader    a Reader on top of the workspace definition
     * @return          a Workspace object
     * @throws WorkspaceReaderException     if something goes wrong
     */
    Workspace read(Reader reader) throws WorkspaceReaderException;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy