org.teamapps.ux.css.CssStyles Maven / Gradle / Ivy
/*-
* ========================LICENSE_START=================================
* TeamApps
* ---
* Copyright (C) 2014 - 2024 TeamApps.org
* ---
* 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.
* =========================LICENSE_END==================================
*/
package org.teamapps.ux.css;
import java.util.Collection;
import java.util.HashMap;
import java.util.Map;
import java.util.Set;
public class CssStyles implements Map {
private final Map properties = new HashMap<>();
public CssStyles() {
}
public CssStyles(Map properties) {
this.properties.putAll(properties);
}
public CssStyles(String propertyName, String value) {
this.properties.put(propertyName, value);
}
@Override
public int size() {
return properties.size();
}
@Override
public boolean isEmpty() {
return properties.isEmpty();
}
@Override
public boolean containsKey(Object propertyName) {
return properties.containsKey((String) propertyName);
}
@Override
public boolean containsValue(Object value) {
return properties.containsValue(value);
}
@Override
public String get(Object propertyName) {
return properties.get((String) propertyName);
}
@Override
public String put(String propertyName, String value) {
return properties.put(propertyName, value);
}
@Override
public String remove(Object propertyName) {
return properties.remove((String) propertyName);
}
@Override
public void putAll(Map extends String, ? extends String> m) {
m.forEach((propertyName, value) -> properties.put((String) propertyName, value));
}
@Override
public void clear() {
properties.clear();
}
@Override
public Set keySet() {
return properties.keySet();
}
@Override
public Collection values() {
return properties.values();
}
@Override
public Set> entrySet() {
return properties.entrySet();
}
@Override
public boolean equals(Object o) {
return properties.equals(o);
}
@Override
public int hashCode() {
return properties.hashCode();
}
}