smithy-build/src/main/java/software/amazon/smithy/build/transforms/ExcludeShapesByTag.java [36:64]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public static final class Config {
        private Set<String> tags = Collections.emptySet();

        /**
         * Gets the set of tags that causes shapes to be removed.
         *
         * @return Returns the removal tags.
         */
        public Set<String> getTags() {
            return tags;
        }

        /**
         * Sets the set of tags that causes shapes to be removed.
         *
         * @param tags Tags that cause shapes to be removed.
         */
        public void setTags(Set<String> tags) {
            this.tags = tags;
        }
    }

    @Override
    public Class<Config> getConfigType() {
        return Config.class;
    }

    @Override
    public String getName() {
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



smithy-build/src/main/java/software/amazon/smithy/build/transforms/IncludeShapesByTag.java [37:65]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public static final class Config {
        private Set<String> tags = Collections.emptySet();

        /**
         * Gets the set of tags that cause shapes to be included.
         *
         * @return Returns the inclusion tags.
         */
        public Set<String> getTags() {
            return tags;
        }

        /**
         * Sets the set of tags that cause shapes to be included.
         *
         * @param tags Tags that cause shapes to be included.
         */
        public void setTags(Set<String> tags) {
            this.tags = tags;
        }
    }

    @Override
    public Class<Config> getConfigType() {
        return Config.class;
    }

    @Override
    public String getName() {
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



