blob: 015d6212b64dd2292ad5a1979eb6634162563368 [file] [log] [blame]
// Copyright 2015 The Vanadium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package io.v.syncslides.model;
/**
* Callbacks for list changes.
*/
public interface ListListener {
void notifyItemChanged(int position);
void notifyItemInserted(int position);
void notifyItemRemoved(int position);
}