/******************************************************************************* * Copyright (c) 2008, 2015 Innoopract Informationssysteme GmbH 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: * Innoopract Informationssysteme GmbH - initial API and implementation * EclipseSource - ongoing development ******************************************************************************/ package org.eclipse.rap.rwt.internal.theme; import java.util.ArrayList; import java.util.List; import org.eclipse.rap.rwt.internal.theme.css.StyleRule; import org.eclipse.rap.rwt.internal.theme.css.StyleSheet; public class StyleSheetBuilder { private final List<StyleRule> rulesList; public StyleSheetBuilder() { rulesList = new ArrayList<>(); } public void addStyleSheet( StyleSheet styleSheet ) { StyleRule[] styleRules = styleSheet.getStyleRules(); for( StyleRule styleRule : styleRules ) { addStyleRule( styleRule ); } } public void addStyleRule( StyleRule styleRule ) { rulesList.add( styleRule ); } public StyleSheet getStyleSheet() { StyleRule[] styleRules = rulesList.toArray( new StyleRule[ rulesList.size() ] ); return new StyleSheet( styleRules ); } }