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

com.structurizr.dsl.ViewDslContext Maven / Gradle / Ivy

The newest version!
package com.structurizr.dsl;

import com.structurizr.view.View;

abstract class ViewDslContext extends DslContext {

    private final View view;

    ViewDslContext(View view) {
        this.view = view;
    }

    View getView() {
        return view;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy