All Downloads are FREE. Search and download functionalities are using the official Maven repository.

jakarta.faces.view.facelets.TagHandlerDelegate Maven / Gradle / Ivy

/*
 * Copyright (c) 1997, 2020 Oracle and/or its affiliates. All rights reserved.
 *
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Public License v. 2.0, which is available at
 * http://www.eclipse.org/legal/epl-2.0.
 *
 * This Source Code may also be made available under the following Secondary
 * Licenses when the conditions for such availability set forth in the
 * Eclipse Public License v. 2.0 are satisfied: GNU General Public License,
 * version 2 with the GNU Classpath Exception, which is available at
 * https://www.gnu.org/software/classpath/license.html.
 *
 * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
 */

package jakarta.faces.view.facelets;

import java.io.IOException;

import jakarta.faces.component.UIComponent;

/**
 * 

* Abstract class that defines methods relating to helping tag handler * instances. This abstraction enables implementation details to be hidden by the Jakarta Faces implementation * while still allowing concrete classes to be defined for extension by users. *

* * @since 2.0 */ public abstract class TagHandlerDelegate { /** *

* Return a {@link MetaRuleset} particular to this kind of tag handler. Called from classes that implement * {@link MetaTagHandler}. *

* * @param type the Class for which the MetaRuleset must be created. * * @return a {@link MetaRuleset} particular to this kind of tag handler. * * @since 2.0 */ public abstract MetaRuleset createMetaRuleset(Class type); /** *

* Called by classes that implement * {@link jakarta.faces.view.facelets.FaceletHandler} in their implementation of apply(). *

* *

* If the argument {@code comp} is new to the view, for each tag attribute declared to be in the pass through attribute * namespace, set the name and value of the attribute into the pass through attributes map of the component. See * {@link UIComponent#getPassThroughAttributes(boolean) }. See the VDLDocs for the namespace URI of the pass through * attribute namespace. Attributes whose value is a {@code ValueExpression} must remain un-evaluated and stored in the * map as {@code ValueExpression} instances. *

* * @param ctx the FaceletContext for this request * * @param comp the UIComponent that corresponds to this element. * * @throws IOException if any files necessary to apply this tag handler have any difficulty while loading * */ public abstract void apply(FaceletContext ctx, UIComponent comp) throws IOException; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy