Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
//License from project: Apache License 

import android.content.ContentValues;

public class Main {
    private static ContentValues mConv;

    public static ContentValues getConvString(String key, String value) {
        if (mConv != null) {
            mConv = null;
        }
        mConv = new ContentValues();
        mConv.put(key, value);
        return mConv;
    }
}