smithy-build/src/main/java/software/amazon/smithy/build/transforms/ExcludeTraits.java [46:78]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public static final class Config {
        private Set<String> traits = Collections.emptySet();

        /**
         * Gets the list of trait shape IDs/namespaces to exclude.
         *
         * @return shape IDs to exclude.
         */
        public Set<String> getTraits() {
            return traits;
        }

        /**
         * Sets the list of trait shape IDs/namespaces to exclude.
         *
         * <p>Relative shape IDs are considered traits in the prelude
         * namespace, {@code smithy.api}. Strings ending in "#" are
         * used to exclude traits from an entire namespace.
         *
         * @param traits Traits to exclude.
         */
        public void setTraits(Set<String> traits) {
            this.traits = traits;
        }
    }

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

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



smithy-build/src/main/java/software/amazon/smithy/build/transforms/IncludeTraits.java [46:78]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public static final class Config {
        private Set<String> traits = Collections.emptySet();

        /**
         * Gets the list of trait shape IDs to include.
         *
         * @return shape IDs to include.
         */
        public Set<String> getTraits() {
            return traits;
        }

        /**
         * Sets the list of trait shape IDs to include.
         *
         * <p>End an argument with "#" to include the traits from an entire
         * namespace. Trait shape IDs that are relative are assumed to be
         * part of the {@code smithy.api} prelude namespace.
         *
         * @param traits Traits to include.
         */
        public void setTraits(Set<String> traits) {
            this.traits = traits;
        }
    }

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

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



