Source code: org/alicebot/server/core/processor/Processor.java
1 // Decompiled by Jad v1.5.8c. Copyright 2001 Pavel Kouznetsov.
2 // Jad home page: http://www.geocities.com/kpdus/jad.html
3 // Decompiler options: packimports(3)
4
5 package org.alicebot.server.core.processor;
6
7 import org.alicebot.server.core.parser.GenericParser;
8 import org.alicebot.server.core.parser.XMLNode;
9
10 // Referenced classes of package org.alicebot.server.core.processor:
11 // ProcessorException
12
13 public abstract class Processor
14 {
15
16 public Processor()
17 {
18 }
19
20 public abstract String process(int i, XMLNode xmlnode, GenericParser genericparser)
21 throws ProcessorException;
22
23 public static final String label = null;
24 protected static final String EMPTY_STRING = "";
25 protected static final String NAME = "name";
26 protected static final String VALUE = "value";
27 protected static final String NAME_EQUALS = "name=";
28 protected static final String VALUE_EQUALS = "value=";
29 protected static final String ID = "id";
30 protected static final String ENABLED = "enabled";
31
32 }