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

com.spun.util.persistence.test.MockSaver Maven / Gradle / Ivy

The newest version!
package com.spun.util.persistence.test;

import com.spun.util.ArrayUtils;
import com.spun.util.persistence.Saver;

import java.util.ArrayList;

public class MockSaver implements Saver
{
  public ArrayList saved = new ArrayList();
  public T save(T save)
  {
    saved.add(save);
    return save;
  }
  public T getLastSaved()
  {
    return ArrayUtils.getLast(saved);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy