Source code: com/sun/facelets/tag/MetaRule.java
1 /**
2 * Licensed under the Common Development and Distribution License,
3 * you may not use this file except in compliance with the License.
4 * You may obtain a copy of the License at
5 *
6 * http://www.sun.com/cddl/
7 *
8 * Unless required by applicable law or agreed to in writing, software
9 * distributed under the License is distributed on an "AS IS" BASIS,
10 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
11 * implied. See the License for the specific language governing
12 * permissions and limitations under the License.
13 */
14
15 package com.sun.facelets.tag;
16
17 /**
18 * A potential rule for Metadata on the passed MetadataTarget
19 *
20 * @see com.sun.facelets.tag.Metadata
21 * @see com.sun.facelets.tag.MetadataTarget
22 * @author Jacob Hookom
23 * @version $Id: MetaRule.java,v 1.2 2005/08/24 04:38:47 jhook Exp $
24 */
25 public abstract class MetaRule {
26
27 /**
28 * @param name
29 * @param attribute
30 * @param meta
31 * @return
32 */
33 public abstract Metadata applyRule(String name, TagAttribute attribute,
34 MetadataTarget meta);
35
36 }