org.alicebot.server.core.targeting
Class Targeting

java.lang.Object
  extended by org.alicebot.server.core.targeting.Targeting
Direct Known Subclasses:
TargetingTool, TargetMaster, TargetWriter

public abstract class Targeting
extends java.lang.Object

Contains constants used by targeting.

Author:
Noel Bush

Field Summary
static java.lang.String CATEGORY_END
          The end of a category element.
static java.lang.String CATEGORY_START
          The start of a category element.
static java.lang.String EMPTY_STRING
          An empty string.
static java.lang.String INDENT
          An indent.
static java.lang.String INPUT_END
          The end of an input element.
static java.lang.String INPUT_START
          The start of an input element.
static java.lang.String LINE_SEPARATOR
          The system line separator string.
static java.lang.String MATCH_END
          The end of a match element.
static java.lang.String MATCH_START
          The start of a match element.
static java.lang.String PATTERN_END
          The end of a pattern element.
static java.lang.String PATTERN_START
          The start of a pattern element.
static java.lang.String REPLY_END
          The end of a reply element.
static java.lang.String REPLY_START
          The start of a reply element.
static java.lang.String SPACE
          A space.
static java.lang.String TARGET_END
          The end of a target element.
static java.lang.String TARGET_START
          The start of a target element.
static java.lang.String TARGETS
          The string "targets".
static java.lang.String TARGETS_END
          The end of a targets element.
static java.lang.String TARGETS_START
          The start of a targets element.
static java.lang.String TEMPLATE_END
          The end of a template element.
static java.lang.String TEMPLATE_START
          The start of a template element.
static java.lang.String TEXT_END
          The end of a text element.
static java.lang.String TEXT_START
          The start of a text element.
static java.lang.String THAT_END
          The end of a that element.
static java.lang.String THAT_START
          The start of a that element.
static java.lang.String TOPIC_END
          The end of a topic element.
static java.lang.String TOPIC_NAME_BEGIN
          The beginning of a topic start marker with a name attribute.
static java.lang.String TOPIC_NAME_END
          The end of a topic start marker with a name attribute.
static java.lang.String TOPIC_START
          The start of a topic element.
 
Constructor Summary
Targeting()
           
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

TARGETS

public static final java.lang.String TARGETS
The string "targets".

See Also:
Constant Field Values

TARGETS_START

public static final java.lang.String TARGETS_START
The start of a targets element.

See Also:
Constant Field Values

TARGETS_END

public static final java.lang.String TARGETS_END
The end of a targets element.

See Also:
Constant Field Values

TARGET_START

public static final java.lang.String TARGET_START
The start of a target element.

See Also:
Constant Field Values

TARGET_END

public static final java.lang.String TARGET_END
The end of a target element.

See Also:
Constant Field Values

INPUT_START

public static final java.lang.String INPUT_START
The start of an input element.

See Also:
Constant Field Values

INPUT_END

public static final java.lang.String INPUT_END
The end of an input element.

See Also:
Constant Field Values

TEXT_START

public static final java.lang.String TEXT_START
The start of a text element.

See Also:
Constant Field Values

TEXT_END

public static final java.lang.String TEXT_END
The end of a text element.

See Also:
Constant Field Values

MATCH_START

public static final java.lang.String MATCH_START
The start of a match element.

See Also:
Constant Field Values

MATCH_END

public static final java.lang.String MATCH_END
The end of a match element.

See Also:
Constant Field Values

PATTERN_START

public static final java.lang.String PATTERN_START
The start of a pattern element.

See Also:
Constant Field Values

PATTERN_END

public static final java.lang.String PATTERN_END
The end of a pattern element.

See Also:
Constant Field Values

THAT_START

public static final java.lang.String THAT_START
The start of a that element.

See Also:
Constant Field Values

THAT_END

public static final java.lang.String THAT_END
The end of a that element.

See Also:
Constant Field Values

TOPIC_START

public static final java.lang.String TOPIC_START
The start of a topic element.

See Also:
Constant Field Values

TOPIC_END

public static final java.lang.String TOPIC_END
The end of a topic element.

See Also:
Constant Field Values

TOPIC_NAME_BEGIN

public static final java.lang.String TOPIC_NAME_BEGIN
The beginning of a topic start marker with a name attribute.

See Also:
Constant Field Values

TOPIC_NAME_END

public static final java.lang.String TOPIC_NAME_END
The end of a topic start marker with a name attribute.

See Also:
Constant Field Values

CATEGORY_START

public static final java.lang.String CATEGORY_START
The start of a category element.

See Also:
Constant Field Values

CATEGORY_END

public static final java.lang.String CATEGORY_END
The end of a category element.

See Also:
Constant Field Values

TEMPLATE_START

public static final java.lang.String TEMPLATE_START
The start of a template element.

See Also:
Constant Field Values

TEMPLATE_END

public static final java.lang.String TEMPLATE_END
The end of a template element.

See Also:
Constant Field Values

REPLY_START

public static final java.lang.String REPLY_START
The start of a reply element.

See Also:
Constant Field Values

REPLY_END

public static final java.lang.String REPLY_END
The end of a reply element.

See Also:
Constant Field Values

INDENT

public static final java.lang.String INDENT
An indent.

See Also:
Constant Field Values

LINE_SEPARATOR

public static final java.lang.String LINE_SEPARATOR
The system line separator string.


SPACE

public static final java.lang.String SPACE
A space.

See Also:
Constant Field Values

EMPTY_STRING

public static final java.lang.String EMPTY_STRING
An empty string.

See Also:
Constant Field Values
Constructor Detail

Targeting

public Targeting()