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.taglib;
016
017import javax.faces.component.UIComponent;
018import javax.faces.webapp.UIComponentELTag;
019
020public class ResourcesTag extends UIComponentELTag {
021
022    private String ignoreLocal;
023
024    @Override
025    public String getComponentType() {
026        return "nxthemes.resources";
027    }
028
029    @Override
030    public String getRendererType() {
031        return null;
032    }
033
034    @Override
035    protected void setProperties(UIComponent component) {
036        super.setProperties(component);
037    }
038
039    public String getIgnoreLocal() {
040        return ignoreLocal;
041    }
042
043    public void setIgnoreLocal(String ignoreLocal) {
044        this.ignoreLocal = ignoreLocal;
045    }
046
047    @Override
048    public void release() {
049        super.release();
050    }
051
052}