com.google.gwt.autobean.client.impl.AbstractAutoBeanFactory Maven / Gradle / Ivy
/*
* 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.gwt.autobean.client.impl;
import com.google.gwt.autobean.shared.AutoBean;
import com.google.gwt.autobean.shared.AutoBeanFactory;
import com.google.gwt.autobean.shared.impl.EnumMap;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
/**
* Provides base implementations of AutoBeanFactory methods.
*
* AutoBeans has moved to
* com.google.web.bindery.autobeans
. This package will be
* removed in a future version of GWT.
*/
@Deprecated
public abstract class AbstractAutoBeanFactory implements AutoBeanFactory,
EnumMap {
protected Map, String> enumToStringMap;
// This map is almost always one-to-one
protected Map>> stringsToEnumsMap;
private JsniCreatorMap creatorMap;
public AutoBean create(Class clazz) {
maybeInitializeCreatorMap();
return creatorMap.create(clazz, this);
}
public AutoBean create(Class clazz, U delegate) {
maybeInitializeCreatorMap();
return creatorMap.create(clazz, this, delegate);
}
/**
* EnumMap support.
*/
public > E getEnum(Class clazz, String token) {
maybeInitializeEnumMap();
List> list = stringsToEnumsMap.get(token);
if (list == null) {
throw new IllegalArgumentException(token);
}
for (Enum> e : list) {
if (e.getDeclaringClass().equals(clazz)) {
@SuppressWarnings("unchecked")
E toReturn = (E) e;
return toReturn;
}
}
throw new IllegalArgumentException(clazz.getName());
}
/**
* EnumMap support.
*/
public String getToken(Enum> e) {
maybeInitializeEnumMap();
String toReturn = enumToStringMap.get(e);
if (toReturn == null) {
throw new IllegalArgumentException(e.toString());
}
return toReturn;
}
protected abstract void initializeCreatorMap(JsniCreatorMap creatorMap);
protected abstract void initializeEnumMap();
private void maybeInitializeCreatorMap() {
if (creatorMap == null) {
creatorMap = JsniCreatorMap.createMap();
initializeCreatorMap(creatorMap);
}
}
private void maybeInitializeEnumMap() {
if (enumToStringMap == null) {
enumToStringMap = new HashMap, String>();
stringsToEnumsMap = new HashMap>>();
initializeEnumMap();
}
}
}