source: nutchez-0.1/tomcat/webapps/examples/WEB-INF/classes/examples/ExampleTagBase.java @ 66

Last change on this file since 66 was 66, checked in by waue, 15 years ago

NutchEz - an easy way to nutch

File size: 1.9 KB
Line 
1/*
2* Licensed to the Apache Software Foundation (ASF) under one or more
3* contributor license agreements.  See the NOTICE file distributed with
4* this work for additional information regarding copyright ownership.
5* The ASF licenses this file to You under the Apache License, Version 2.0
6* (the "License"); you may not use this file except in compliance with
7* the License.  You may obtain a copy of the License at
8*
9*     http://www.apache.org/licenses/LICENSE-2.0
10*
11* Unless required by applicable law or agreed to in writing, software
12* distributed under the License is distributed on an "AS IS" BASIS,
13* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14* See the License for the specific language governing permissions and
15* limitations under the License.
16*/
17package examples;
18
19import javax.servlet.jsp.*;
20import javax.servlet.jsp.tagext.*;
21
22public abstract class ExampleTagBase extends BodyTagSupport {
23
24    public void setParent(Tag parent) {
25        this.parent = parent;
26    }
27
28    public void setBodyContent(BodyContent bodyOut) {
29        this.bodyOut = bodyOut;
30    }
31
32    public void setPageContext(PageContext pageContext) {
33        this.pageContext = pageContext;
34    }
35
36    public Tag getParent() {
37        return this.parent;
38    }
39   
40    public int doStartTag() throws JspException {
41        return SKIP_BODY;
42    }
43
44    public int doEndTag() throws JspException {
45        return EVAL_PAGE;
46    }
47   
48
49    // Default implementations for BodyTag methods as well
50    // just in case a tag decides to implement BodyTag.
51    public void doInitBody() throws JspException {
52    }
53
54    public int doAfterBody() throws JspException {
55        return SKIP_BODY;
56    }
57
58    public void release() {
59        bodyOut = null;
60        pageContext = null;
61        parent = null;
62    }
63   
64    protected BodyContent bodyOut;
65    protected PageContext pageContext;
66    protected Tag parent;
67}
Note: See TracBrowser for help on using the repository browser.