001/*
002 * (C) Copyright 2006-2007 Nuxeo SAS <http://nuxeo.com> and others
003 *
004 * All rights reserved. This program and the accompanying materials
005 * are made available under the terms of the Eclipse Public License v1.0
006 * which accompanies this distribution, and is available at
007 * http://www.eclipse.org/legal/epl-v10.html
008 *
009 * Contributors:
010 *     Jean-Marc Orliaguet, Chalmers
011 *
012 * $Id$
013 */
014
015package org.nuxeo.theme.jsf.component;
016
017import javax.faces.component.UIOutput;
018
019public class UIThemeStyles extends UIOutput {
020
021    private String cache;
022
023    private String inline;
024
025    private String theme;
026
027    public String getCache() {
028        return cache;
029    }
030
031    public void setCache(String cache) {
032        this.cache = cache;
033    }
034
035    public String getInline() {
036        return inline;
037    }
038
039    public void setInline(String inline) {
040        this.inline = inline;
041    }
042
043    public String getTheme() {
044        return theme;
045    }
046
047    public void setTheme(String theme) {
048        this.theme = theme;
049    }
050
051}