EntityEncoder.java :  » UnTagged » android-shuffle » org » dodgybits » shuffle » android » core » model » encoding » Android Open Source

Android Open Source » UnTagged » android shuffle 
android shuffle » org » dodgybits » shuffle » android » core » model » encoding » EntityEncoder.java
package org.dodgybits.shuffle.android.core.model.encoding;

import android.os.Bundle;

public interface EntityEncoder<Entity> {
    
    void save(Bundle icicle, Entity e);
    Entity restore(Bundle icicle);

}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.