blob: 2708b512045d9310f1bb3a3338b6f58267860de3 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2012 Original authors and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Original authors and others - initial API and implementation
******************************************************************************/
package org.eclipse.nebula.widgets.nattable.core.style;
import java.util.HashMap;
import java.util.Map;
import java.util.Map.Entry;
import java.util.Set;
/**
* Implementation of {@link IStyle} that stores the configuration values within a map.
*/
public class Style implements IStyle {
/**
* Map containing the style configurations.
*/
private final Map<ConfigAttribute<?>, Object> styleAttributeValueMap = new HashMap<ConfigAttribute<?>, Object>();
@SuppressWarnings("unchecked")
@Override
public <T> T getAttributeValue(ConfigAttribute<T> styleAttribute) {
return (T) styleAttributeValueMap.get(styleAttribute);
}
@Override
public <T> void setAttributeValue(ConfigAttribute<T> styleAttribute, T value) {
styleAttributeValueMap.put(styleAttribute, value);
}
@Override
public String toString() {
StringBuilder resultBuilder = new StringBuilder();
resultBuilder.append(this.getClass().getSimpleName() + ": "); //$NON-NLS-1$
Set<Entry<ConfigAttribute<?>, Object>> entrySet = styleAttributeValueMap.entrySet();
for (Entry<ConfigAttribute<?>, Object> entry : entrySet) {
resultBuilder.append(entry.getKey() + ": " + entry.getValue() + "\n"); //$NON-NLS-1$ //$NON-NLS-2$
}
return resultBuilder.toString();
}
}