com.gwtplatform.processors.tools.bindings.gin.GinBinding.java Source code

Java tutorial

Introduction

Here is the source code for com.gwtplatform.processors.tools.bindings.gin.GinBinding.java

Source

/*
 * Copyright 2015 ArcBees 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.gwtplatform.processors.tools.bindings.gin;

import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
import java.util.Objects;

import com.google.common.base.Optional;
import com.gwtplatform.processors.tools.domain.HasImports;
import com.gwtplatform.processors.tools.domain.Type;

public class GinBinding implements HasImports {
    private final Type implementer;
    private final Optional<Type> implemented;
    private final Optional<Type> scope;
    private final boolean eagerSingleton;

    public GinBinding(Type implementer, Type implemented, Type scope, boolean eagerSingleton) {
        this.implementer = implementer;
        this.implemented = Optional.fromNullable(implemented);
        this.scope = Optional.fromNullable(eagerSingleton ? null : scope);
        this.eagerSingleton = eagerSingleton;
    }

    public Type getImplementer() {
        return implementer;
    }

    public Optional<Type> getImplemented() {
        return implemented;
    }

    public Optional<Type> getScope() {
        return scope;
    }

    public boolean isEagerSingleton() {
        return eagerSingleton;
    }

    @Override
    public Collection<String> getImports() {
        List<String> imports = new ArrayList<>(implementer.getImports());

        if (implemented.isPresent()) {
            imports.addAll(implemented.get().getImports());
        }
        if (scope.isPresent()) {
            imports.addAll(scope.get().getImports());
        }

        return imports;
    }

    @Override
    public boolean equals(Object o) {
        if (this == o) {
            return true;
        }
        if (o == null || getClass() != o.getClass()) {
            return false;
        }

        GinBinding that = (GinBinding) o;
        return Objects.equals(eagerSingleton, that.eagerSingleton) && Objects.equals(implementer, that.implementer)
                && Objects.equals(implemented, that.implemented) && Objects.equals(scope, that.scope);
    }

    @Override
    public String toString() {
        return "GinBinding{" + "implementer=" + implementer + ", implemented=" + implemented + ", scope=" + scope
                + ", eagerSingleton=" + eagerSingleton + '}';
    }

    @Override
    public int hashCode() {
        return Objects.hash(implementer, implemented, scope, eagerSingleton);
    }
}