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

software.amazon.smithy.traitcodegen.sections.ClassSection Maven / Gradle / Ivy

/*
 * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 * SPDX-License-Identifier: Apache-2.0
 */

package software.amazon.smithy.traitcodegen.sections;

import software.amazon.smithy.model.shapes.Shape;
import software.amazon.smithy.utils.CodeSection;

/**
 * Contains a Java class defining a trait or nested shape.
 */
public final class ClassSection implements CodeSection {
    private final Shape shape;

    public ClassSection(Shape shape) {
        this.shape = shape;
    }

    /**
     * {@link Shape} that this Java class represents.
     */
    public Shape shape() {
        return shape;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy