/** * Copyright (c) 2017-present, Facebook, Inc. * All rights reserved. * * This source code is licensed under the BSD-style license found in the * LICENSE file in the root directory of this source tree. An additional grant * of patent rights can be found in the PATENTS file in the same directory. */ package com.facebook.litho; import android.view.View; import static com.facebook.litho.EventDispatcherUtils.dispatchOnLongClick; /** * Long click listener that triggers its underlying event handler. */ class ComponentLongClickListener implements View.OnLongClickListener { private EventHandler<LongClickEvent> mEventHandler; @Override public boolean onLongClick(View view) { if (mEventHandler != null) { return dispatchOnLongClick(mEventHandler, view); } return false; } EventHandler<LongClickEvent> getEventHandler() { return mEventHandler; } void setEventHandler(EventHandler<LongClickEvent> eventHandler) { mEventHandler = eventHandler; } }