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

com.actionbarsherlock.internal.view.menu.ContextMenuItemWrapper Maven / Gradle / Ivy

There is a newer version: 1.6.8
Show newest version

package com.actionbarsherlock.internal.view.menu;

import android.view.MenuItem;

public class ContextMenuItemWrapper extends MenuItemWrapper {
    private final MenuItem nativeItem;

    public ContextMenuItemWrapper(MenuItem nativeItem) {
        super(nativeItem);
        this.nativeItem = nativeItem;
    }

    public MenuItem unwrap() {
        return nativeItem;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy