package com.nokia.mid.s40.codec;

import java.io.IOException;

public class DataEncoder
{

 public DataEncoder(String string_1) throws IOException
 {
 }
 
 public byte[] getData() throws IOException
 {
  return null;
 }
 
 public void putStart(int int_1, String string_1) throws IOException
 {
 }
 
 public void putEnd(int int_1, String string_1) throws IOException
 {
 }
 
 public void put(int int_1, String string_1, String string_2) throws IOException
 {
 }
 
 public void put(int int_1, String string_1, boolean boolean_1) throws IOException
 {
 }
 
 public void put(int int_1, String string_1, long long_1) throws IOException
 {
 }
 
 public void put(int int_1, String string_1, double double_1) throws IOException
 {
 }
 
 public void put(String string_1, byte[] bytes_1, int int_1) throws IOException
 {
 }
 
}