KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > taglibs > string > CountMatchesTag


1 /*
2  * Copyright 1999,2004 The Apache Software Foundation.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */

16 package org.apache.taglibs.string;
17
18 import javax.servlet.jsp.JspException JavaDoc;
19 import org.apache.commons.lang.StringUtils;
20
21 /**
22  * Return the number of times that the body String
23  * contains the sub-string.
24  *
25  * <dl>
26  * <dt>substring</dt><dd>
27  * Substring to count number of.
28  * Required.
29  * </dd>
30  * </dl>
31  *
32  * @author bayard@generationjava.com
33  */

34 public class CountMatchesTag extends StringTagSupport {
35
36     private String JavaDoc substring;
37
38     public CountMatchesTag() {
39         super();
40     }
41
42     /**
43      * Get the substring property
44      *
45      * @return String property
46      */

47     public String JavaDoc getSubstring() {
48         return this.substring;
49     }
50
51     /**
52      * Set the substring property
53      *
54      * @param substring String property
55      */

56     public void setSubstring(String JavaDoc substring) {
57         this.substring = substring;
58     }
59
60
61
62     public String JavaDoc changeString(String JavaDoc text) throws JspException JavaDoc {
63         return ""+StringUtils.countMatches(text, substring);
64     }
65
66     public void initAttributes() {
67
68         this.substring = null;
69
70     }
71
72 }
73
Popular Tags