00001 package org.jaebi.midlet.bt.requestProcessing;
00002
00003 import org.kxml.parser.XmlParser;
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00022 public abstract class XRequestProcessor extends RequestProcessor {
00023
00024 private String tableName = "";
00025
00026
00027 public void setTableName(String tableName){
00028 this.tableName = tableName;
00029 }
00030
00031
00032 protected String getTablenode(){
00033 String node = "<table>"+ this.tableName + "</table>";
00034 return node;
00035
00036 }
00037
00038 protected void parseXresponse(String xresponse){
00039 boolean leave = false;
00040 XmlParser parser;
00041
00042
00043 }
00044
00045 protected String getXrequest(){
00046
00047 return "pippo";
00048 }
00049
00050 }