All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.google.gwt.dev.cfg.ConfigurationProperty Maven / Gradle / Ivy

Go to download

Vaadin is a web application framework for Rich Internet Applications (RIA). Vaadin enables easy development and maintenance of fast and secure rich web applications with a stunning look and feel and a wide browser support. It features a server-side architecture with the majority of the logic running on the server. Ajax technology is used at the browser-side to ensure a rich and interactive user experience.

There is a newer version: 8.27.1
Show newest version
/*
 * Copyright 2008 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.dev.cfg;

import com.google.gwt.thirdparty.guava.common.base.Objects;
import com.google.gwt.thirdparty.guava.common.collect.ImmutableList;

import java.util.ArrayList;
import java.util.Collections;
import java.util.List;

/**
 * Represents a module property which does not impact deferred-binding
 * decisions.
 */
public class ConfigurationProperty extends Property {
  private final boolean allowMultipleValues;
  private List targetLibraryValues = new ArrayList();
  private List values = new ArrayList();

  public ConfigurationProperty(String name) {
    this(name, false);
  }

  public ConfigurationProperty(String name, boolean allowMultipleValues) {
    super(name);
    this.allowMultipleValues = allowMultipleValues;
    if (!allowMultipleValues) {
      values.add(null); // single-valued properties default to null
    }
  }

  public void addTargetLibraryValue(String value) {
    addValue(value);
    targetLibraryValues.add(value);
  }

  public void addValue(String value) {
    if (!allowMultipleValues) {
      throw new IllegalStateException(
          "Attempt to add a value to a single-valued ConfigurationProperty");
    }
    values.add(value);
  }

  public boolean allowsMultipleValues() {
    return allowMultipleValues;
  }

  public void clear() {
    values.clear();
  }

  @Override
  public boolean equals(Object object) {
    if (object instanceof ConfigurationProperty) {
      ConfigurationProperty that = (ConfigurationProperty) object;
      return Objects.equal(this.name, that.name)
          && Objects.equal(this.allowMultipleValues, that.allowMultipleValues)
          && Objects.equal(this.values, that.values);
    }
    return false;
  }

  public List getTargetLibraryValues() {
    return ImmutableList.copyOf(targetLibraryValues);
  }

  public String getValue() {
    if (values.size() != 1) {
      throw new IllegalStateException("size != 1");
    }
    return values.get(0);
  }

  public List getValues() {
    return Collections.unmodifiableList(values);
  }

  @Override
  public int hashCode() {
    return Objects.hashCode(name, allowMultipleValues, values);
  }

  public boolean hasTargetLibraryValues() {
    return !targetLibraryValues.isEmpty();
  }

  public boolean isMultiValued() {
    return values.size() > 1;
  }

  public void setTargetLibraryValue(String value) {
    if (targetLibraryValues.size() == 0) {
      targetLibraryValues.add(value);
    } else {
      targetLibraryValues.set(0, value);
    }
    setValue(value);
  }

  public void setValue(String value) {
    if (values.size() == 0) {
      values.add(value);
    } else {
      values.set(0, value);
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy