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

        /**
         * @return the list of tags that, if present, cause the trait to be removed.
         */
        public Set<String> getTags() {
            return tags;
        }

        /**
         * Sets the list of tags that, if present, cause the trait to be removed.
         *
         * @param tags Tags to set.
         */
        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/IncludeTags.java [33:61]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public static final class Config {
        private Set<String> tags = Collections.emptySet();

        /**
         * Gets the set of tags that are retained in the model.
         *
         * @return Returns the tags to retain.
         */
        public Set<String> getTags() {
            return tags;
        }

        /**
         * Sets the set of tags that are retained in the model.
         *
         * @param tags The tags to retain in the model.
         */
        public void setTags(Set<String> tags) {
            this.tags = tags;
        }
    }

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

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



