KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > htmlparser > tags > SelectTag


1 // HTMLParser Library $Name: v1_5_20050313 $ - A java-based parser for HTML
2
// http://sourceforge.org/projects/htmlparser
3
// Copyright (C) 2004 Somik Raha
4
//
5
// Revision Control Information
6
//
7
// $Source: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tags/SelectTag.java,v $
8
// $Author: derrickoswald $
9
// $Date: 2004/01/24 23:57:52 $
10
// $Revision: 1.38 $
11
//
12
// This library is free software; you can redistribute it and/or
13
// modify it under the terms of the GNU Lesser General Public
14
// License as published by the Free Software Foundation; either
15
// version 2.1 of the License, or (at your option) any later version.
16
//
17
// This library is distributed in the hope that it will be useful,
18
// but WITHOUT ANY WARRANTY; without even the implied warranty of
19
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20
// Lesser General Public License for more details.
21
//
22
// You should have received a copy of the GNU Lesser General Public
23
// License along with this library; if not, write to the Free Software
24
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
25
//
26

27 package org.htmlparser.tags;
28
29 import org.htmlparser.util.NodeList;
30
31 /**
32  * A select tag within a form.
33  */

34 public class SelectTag extends CompositeTag
35 {
36     /**
37      * The set of names handled by this tag.
38      */

39     private static final String JavaDoc[] mIds = new String JavaDoc[] {"SELECT"};
40
41     /**
42      * The set of tag names that indicate the end of this tag.
43      */

44     private static final String JavaDoc[] mEnders = new String JavaDoc[] {"INPUT", "TEXTAREA", "SELECT"};
45
46     /**
47      * The set of end tag names that indicate the end of this tag.
48      */

49     private static final String JavaDoc[] mEndTagEnders = new String JavaDoc[] {"FORM", "BODY", "HTML"};
50
51     /**
52      * Create a new select tag.
53      */

54     public SelectTag ()
55     {
56     }
57
58     /**
59      * Return the set of names handled by this tag.
60      * @return The names to be matched that create tags of this type.
61      */

62     public String JavaDoc[] getIds ()
63     {
64         return (mIds);
65     }
66
67     /**
68      * Return the set of tag names that cause this tag to finish.
69      * @return The names of following tags that stop further scanning.
70      */

71     public String JavaDoc[] getEnders ()
72     {
73         return (mEnders);
74     }
75
76     /**
77      * Return the set of end tag names that cause this tag to finish.
78      * @return The names of following end tags that stop further scanning.
79      */

80     public String JavaDoc[] getEndTagEnders ()
81     {
82         return (mEndTagEnders);
83     }
84
85     public OptionTag [] getOptionTags ()
86     {
87         NodeList list;
88         OptionTag[] ret;
89         
90         list = searchFor (OptionTag.class, true);
91         ret = new OptionTag[list.size()];
92         list.copyToNodeArray (ret);
93
94         return (ret);
95     }
96 }
97
Popular Tags