01: /**
02: * Title: Prototype Shun Daemon Wizard<p>
03: * Description: This project is a prototype for a shun daemon configuration file wizard.
04: * The basis for this wizard is Andrew Molitor's prototype shell script.<p>
05: * Copyright: Copyright (c) 2000Joi Ellis<p>
06: * Company: Aravox Technologies<p>
07: * @author Joi Ellis
08: * @version 1.0
09: */package com.aravox.ShunWizard;
10:
11: import java.util.Collection;
12: import java.util.LinkedList;
13: import java.util.ListIterator;
14:
15: public class SensorLinkedList extends AravoxLinkedList {
16:
17: public SensorLinkedList() {
18: super ();
19: }
20:
21: public SensorLinkedList(Collection c) {
22: super (c);
23: }
24:
25: public Browsable sampleObject() {
26: return SensorNode.sampleObject();
27: }
28:
29: /* public Browsable findName(String name) {
30: int index = 0;
31: Browsable node;
32: if (name==null) {
33: return null;
34: } else {
35: ListIterator li = listIterator();
36: while (li.hasNext()) {
37: node = (Browsable) li.next();
38: if (node.getName().equalsIgnoreCase(name)) {
39: return node;
40: }
41: }
42: }
43: return null;
44: }
45: */
46: }
|