KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > websphinx > workbench > SimpleCrawlerEditor


1 /*
2  * WebSphinx web-crawling toolkit
3  *
4  * Copyright (c) 1998-2002 Carnegie Mellon University. All rights
5  * reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  *
11  * 1. Redistributions of source code must retain the above copyright
12  * notice, this list of conditions and the following disclaimer.
13  *
14  * 2. Redistributions in binary form must reproduce the above copyright
15  * notice, this list of conditions and the following disclaimer in
16  * the documentation and/or other materials provided with the
17  * distribution.
18  *
19  * THIS SOFTWARE IS PROVIDED BY CARNEGIE MELLON UNIVERSITY ``AS IS'' AND
20  * ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
21  * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22  * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL CARNEGIE MELLON UNIVERSITY
23  * NOR ITS EMPLOYEES BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
24  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
25  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
26  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
27  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30  *
31  */

32
33 package websphinx.workbench;
34
35 import websphinx.*;
36 import java.awt.*;
37 import rcm.awt.Constrain;
38
39 public class SimpleCrawlerEditor extends CrawlerEditor {
40
41     Label actionLabel;
42     ActionEditor actionEditor;
43
44     public SimpleCrawlerEditor () {
45         super ();
46
47         // remove all the pieces we don't need
48
remove (typeLabel);
49         remove (typeChoice);
50         remove (depthLabel);
51         remove (depthField);
52         remove (depthLabel2);
53         remove (searchOrderChoice);
54
55         // add an action editor
56
actionLabel = new Label("Action:");
57         actionEditor = new ActionEditor ();
58         Constrain.add (this, actionLabel,
59                        Constrain.labelLike (0, 4));
60         Constrain.add (this, actionEditor,
61                        Constrain.areaLike (1, 4, 4));
62     }
63
64     public void setCrawler (Crawler crawler) {
65         super.setCrawler (crawler);
66         actionEditor.setAction (crawler.getAction());
67     }
68
69     public Crawler getCrawler () {
70         crawler.setAction (actionEditor.getAction ());
71         return super.getCrawler ();
72     }
73
74 }
75
Popular Tags