Source code: org/alicebot/server/core/processor/loadtime/InputProcessor.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.loadtime;
6
7 import org.alicebot.server.core.parser.StartupFileParser;
8 import org.alicebot.server.core.parser.XMLNode;
9
10 // Referenced classes of package org.alicebot.server.core.processor.loadtime:
11 // StartupElementProcessor, InvalidStartupElementException, SubstitutionsProcessor
12
13 public class InputProcessor extends StartupElementProcessor
14 {
15
16 public InputProcessor()
17 {
18 }
19
20 public String process(int i, XMLNode xmlnode, StartupFileParser startupfileparser)
21 throws InvalidStartupElementException
22 {
23 SubstitutionsProcessor.addSubstitutions(0, xmlnode, startupfileparser);
24 return "";
25 }
26
27 public static final String label = "input";
28 }