/* * (C) Copyright 2006-2007 Nuxeo SAS <http://nuxeo.com> 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: * Jean-Marc Orliaguet, Chalmers * * $Id$ */ package org.nuxeo.theme.jsf.component; import javax.faces.component.UIOutput; public class UIThemeStyles extends UIOutput { private String cache; private String inline; private String theme; public String getCache() { return cache; } public void setCache(String cache) { this.cache = cache; } public String getInline() { return inline; } public void setInline(String inline) { this.inline = inline; } public String getTheme() { return theme; } public void setTheme(String theme) { this.theme = theme; } }