/ org.htmlparser / src / org / htmlparser / tags / LabelTag.java
LabelTag.java
 1  // HTMLParser Library $Name: v1_6_20060319 $ - A java-based parser for HTML
 2  // http://sourceforge.org/projects/htmlparser
 3  // Copyright (C) 2004 Dhaval Udani
 4  //
 5  // Revision Control Information
 6  //
 7  // $Source: /cvsroot/htmlparser/htmlparser/src/org/htmlparser/tags/LabelTag.java,v $
 8  // $Author: derrickoswald $
 9  // $Date: 2005/04/10 23:20:45 $
10  // $Revision: 1.36 $
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  /**
30   * A label tag.
31   */
32  public class LabelTag extends CompositeTag
33  {
34      /**
35       * The set of names handled by this tag.
36       */
37      private static final String[] mIds = new String[] {"LABEL"};
38  
39      /**
40       * Create a new label tag.
41       */
42      public LabelTag ()
43      {
44      }
45  
46      /**
47       * Return the set of names handled by this tag.
48       * @return The names to be matched that create tags of this type.
49       */
50      public String[] getIds ()
51      {
52          return (mIds);
53      }
54  
55      /**
56       * Return the set of tag names that cause this tag to finish.
57       * @return The names of following tags that stop further scanning.
58       */
59      public String[] getEnders ()
60      {
61          return (mIds);
62      }
63  
64      /**
65       * Returns the text contained inside this label tag.
66       * @return The textual contents between the {@.html <LABEL></LABEL>} pair.
67       */
68      public String getLabel()
69      {
70          return toPlainTextString();
71      }
72  
73      /**
74       * Returns a string representation of this label tag suitable for debugging.
75       * @return A string representing this label.
76       */
77      public String toString()
78      {
79          return "LABEL: "+ getLabel();
80      }
81  }