All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.openxc.sinks.ContextualVehicleDataSink Maven / Gradle / Ivy

The newest version!
package com.openxc.sinks;

import android.content.Context;

/**
 * A parent class for data sinks that require access to an Android context.
 */
public class ContextualVehicleDataSink extends BaseVehicleDataSink {
    private Context mContext;

    public ContextualVehicleDataSink(Context context) {
        mContext = context;
    }

    protected Context getContext() {
        return mContext;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy