Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Savable.java « base « maps « mapswithme « com « src « android - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fba26ee9bf626d6764b15829d9d8222ca884f8cb (plain)
1
2
3
4
5
6
7
8
9
package com.mapswithme.maps.base;

import android.support.annotation.NonNull;

public interface Savable<T>
{
  void onSave(@NonNull T outState);
  void onRestore(@NonNull T inState);
}