Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

import android.content.Intent;

import android.os.Bundle;

public class Main {
    public static void transferData(Bundle oldBundle, Bundle newBundle) {
        if (oldBundle != null) {
            newBundle.putAll(oldBundle);
        }
    }

    public static void transferData(Intent oldIntent, Intent newIntent) {
        if (oldIntent == null) {
            return;
        }

        newIntent.putExtras(oldIntent);
    }
}