package com.nokia.mid.s40.codec;

import java.io.IOException;

public class DataDecoder
{

 public DataDecoder(String string_1, byte[] bytes_1, int int_1, int int_2) 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 int_1) throws IOException
 {
 }
 
 public void getEnd(int int_1) throws IOException
 {
 }
 
 public String getString(int int_1) throws IOException
 {
  return null;
 }
 
 public long getInteger(int int_1) throws IOException
 {
  return 0;
 }
 
 public double getFloat(int int_1) throws IOException
 {
  return 0.0;
 }
 
 public boolean getBoolean() throws IOException
 {
  return false;
 }
 
 public byte[] getByteArray() throws IOException
 {
  return null;
 }
 
}