KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > htmlparser > scanners > AppletScanner


1 // $Header: /home/cvs/jakarta-jmeter/src/htmlparser/org/htmlparser/scanners/AppletScanner.java,v 1.2 2004/02/10 13:41:09 woolfel Exp $
2
/*
3  * ====================================================================
4  * Copyright 2002-2004 The Apache Software Foundation.
5  *
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  * http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  *
18  */

19
20 // The developers of JMeter and Apache are greatful to the developers
21
// of HTMLParser for giving Apache Software Foundation a non-exclusive
22
// license. The performance benefits of HTMLParser are clear and the
23
// users of JMeter will benefit from the hard work the HTMLParser
24
// team. For detailed information about HTMLParser, the project is
25
// hosted on sourceforge at http://htmlparser.sourceforge.net/.
26
//
27
// HTMLParser was originally created by Somik Raha in 2000. Since then
28
// a healthy community of users has formed and helped refine the
29
// design so that it is able to tackle the difficult task of parsing
30
// dirty HTML. Derrick Oswald is the current lead developer and was kind
31
// enough to assist JMeter.
32

33 package org.htmlparser.scanners;
34 import org.htmlparser.tags.AppletTag;
35 import org.htmlparser.tags.Tag;
36 import org.htmlparser.tags.data.CompositeTagData;
37 import org.htmlparser.tags.data.TagData;
38 import org.htmlparser.util.ParserException;
39
40 /**
41  * Scanner for Applet tags
42  */

43 public class AppletScanner extends CompositeTagScanner
44 {
45     private static String JavaDoc[] MATCH_STRING = { "APPLET" };
46     private java.lang.String JavaDoc className;
47     private java.lang.String JavaDoc archive;
48     private java.lang.String JavaDoc codebase;
49
50     public AppletScanner()
51     {
52         super(MATCH_STRING);
53     }
54
55     public AppletScanner(String JavaDoc filter)
56     {
57         super(filter, MATCH_STRING);
58     }
59
60     public String JavaDoc[] getID()
61     {
62         return MATCH_STRING;
63     }
64
65     public Tag createTag(TagData tagData, CompositeTagData compositeTagData)
66         throws ParserException
67     {
68
69         return new AppletTag(tagData, compositeTagData);
70     }
71
72 }
73
Popular Tags