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

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

        /**
         * Sets the set of tags that are removed from the model.
         *
         * @param tags The tags to remove from the model.
         */
        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/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() {
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



