| Home >> All >> org >> alicebot >> server >> core >> [ targeting Javadoc ] |
Source code: org/alicebot/server/core/targeting/TargetInputs.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.targeting; 6 7 import java.util.LinkedList; 8 import org.alicebot.server.core.util.StringTriple; 9 import org.alicebot.server.core.util.StringTripleMatrix; 10 11 public class TargetInputs extends StringTripleMatrix 12 { 13 14 public TargetInputs(String s, String s1, String s2) 15 { 16 add(new StringTriple(s, s1, s2)); 17 } 18 19 public LinkedList getTexts() 20 { 21 return getFirsts(); 22 } 23 24 public LinkedList getThats() 25 { 26 return getSeconds(); 27 } 28 29 public LinkedList getTopics() 30 { 31 return getThirds(); 32 } 33 }