blob: 593ad52a77a38482bb2a906fe914e3df120364c2 [file] [log] [blame]
/*
* Copyright 2010 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
package com.google.web.bindery.autobean.vm;
import com.google.web.bindery.autobean.shared.AutoBean;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;
import java.util.HashSet;
import java.util.List;
import java.util.Set;
/**
* Used by {@link AutoBeanFactorySource#createBean(Class, Configuration)}. This
* type replicates the annotations that may be applied to an AutoBeanFactory
* declaration.
* <p>
* <span style='color: red'>This is experimental, unsupported code.</span>
*/
public class Configuration {
/**
* Builds {@link Configuration} objects.
*/
public static class Builder {
private Configuration toReturn = new Configuration();
public Configuration build() {
toReturn.noWrap.add(AutoBean.class);
toReturn.noWrap = Collections.unmodifiableSet(toReturn.noWrap);
try {
return toReturn;
} finally {
toReturn = null;
}
}
/**
* Equivalent to applying a
* {@link com.google.web.bindery.autobean.shared.AutoBeanFactory.Category
* Category} annotation to an AutoBeanFactory declaration.
*
* @param categories the category types that should be searched for static
* implementations of non-property methods
* @return the Builder
*/
public Builder setCategories(Class<?>... categories) {
toReturn.categories =
Collections.unmodifiableList(new ArrayList<Class<?>>(Arrays.asList(categories)));
return this;
}
/**
* Equivalent to applying a
* {@link com.google.web.bindery.autobean.shared.AutoBeanFactory.NoWrap
* NoWrap} annotation to an AutoBeanFactory declaration.
*
* @param noWrap the types that should be excluded from wrapping
* @return the Builder
*/
public Builder setNoWrap(Class<?>... noWrap) {
toReturn.noWrap.addAll(Arrays.asList(noWrap));
return this;
}
}
private List<Class<?>> categories = Collections.emptyList();
private Set<Class<?>> noWrap = new HashSet<Class<?>>();
private Configuration() {
}
public List<Class<?>> getCategories() {
return categories;
}
public Set<Class<?>> getNoWrap() {
return noWrap;
}
}