[Apache License](http://www.apache.org/licenses/): Version 2.0, January 2004
===============
## TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION ##
### 1. Definitions. ###
"License" sha...
If you think the Android project android_device listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Java Source Code
/*
* =================================================================================================
* Copyright (C) 2014 Martin Albedinsky [Wolf-ITechnologies]
* =================================================================================================
* Licensed under the Apache License, Version 2.0 or later (further "License" only).
* -------------------------------------------------------------------------------------------------
* You may use this file only in compliance with the License. More details and copy of this License
* you may obtain at//fromwww.java2s.com
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* You can redistribute, modify or publish any part of the code written within this file but as it
* is described in the License, the software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES or CONDITIONS OF ANY KIND.
*
* See the License for the specific language governing permissions and limitations under the License.
* =================================================================================================
*/package com.wit.android.device.receiver;
import android.content.Context;
import android.content.Intent;
import android.support.annotation.NonNull;
/**
* <h3>Interface Overview</h3>
* todo: description
*
* @author Martin Albedinsky
*/publicinterface BroadcastProcessor {
/**
* Called to process the given <var>intent</var> with data by this broadcast processor.
*
* @param context Current application context.
* @param intent Broad-casted intent with data.
* @param receiverId An id of the broadcast receiver which received the given <var>intent</var> a
* nd dispatched it to this broadcast processor.
*/publicvoid processReceivedBroadcast(@NonNull Context context, @NonNull Intent intent, int receiverId);
}