
com.google.gwt.inject.client.multibindings.RuntimeBindingsRegistry Maven / Gradle / Ivy
/*
* Copyright 2013 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.inject.client.multibindings;
import java.util.ArrayList;
import java.util.List;
/**
* A registry to keep track of all bindings for a multibinding type in the runtime.
*
* During runtime, when the Ginjector is instantiated, all registerers marked asEagerSingleton will
* be immediately instantiated, that will result in registration of all bindings with this class.
* These bindings are later used by providers to construct the actual sets & maps.
*
* @param type of the binding to track
*/
class RuntimeBindingsRegistry {
private final List bindings = new ArrayList();
private boolean duplicatesPermitted;
public void register(T binding) {
bindings.add(binding);
}
public void permitDuplicates() {
duplicatesPermitted = true;
}
public List getBindings() {
return bindings;
}
public boolean isDuplicatesPermitted() {
return duplicatesPermitted;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy