package com.nokia.mid.s40.codec;

import java.io.IOException;

public class DataEncoder
{

 public DataEncoder(String) throws IOException
 {
 }
 
 public byte[] getData() throws IOException
 {
  return null;
 }
 
 public void putStart(int, String) throws IOException
 {
 }
 
 public void putEnd(int, String) throws IOException
 {
 }
 
 public void put(int, String, String) throws IOException
 {
 }
 
 public void put(int, String, boolean) throws IOException
 {
 }
 
 public void put(int, String, long) throws IOException
 {
 }
 
 public void put(int, String, double) throws IOException
 {
 }
 
 public void put(String, byte[], int) throws IOException
 {
 }
 
}