Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

import android.util.Log;

public class Main {
    protected static final String LOG_TAG = "DAO";

    protected static void log(String table, String methodAndArgs) {
        log(table, methodAndArgs, "");
    }

    protected static void log(String table, String methodAndArgs, Object result) {
        Log.d(LOG_TAG, table.toLowerCase() + "." + methodAndArgs + "--->" + result);
    }
}