package com.nokia.mid.s40.codec;

import java.io.IOException;

public class DataDecoder
{

 public DataDecoder(String, byte[], int, int) throws IOException
 {
 }
 
 public String getName() throws IOException
 {
  return null;
 }
 
 public int getType() throws IOException
 {
  return 0;
 }
 
 public boolean listHasMoreItems() throws IOException
 {
  return false;
 }
 
 public void getStart(int) throws IOException
 {
 }
 
 public void getEnd(int) throws IOException
 {
 }
 
 public String getString(int) throws IOException
 {
  return null;
 }
 
 public long getInteger(int) throws IOException
 {
  return 0;
 }
 
 public double getFloat(int) throws IOException
 {
  return 0.0;
 }
 
 public boolean getBoolean() throws IOException
 {
  return false;
 }
 
 public byte[] getByteArray() throws IOException
 {
  return null;
 }
 
}