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

com.googlecode.objectify.impl.conv.ConverterSaveContext Maven / Gradle / Ivy

Go to download

*** THIS VERSION UPLOADED FOR USE WITH CEDAR-COMMON, TO AVOID DEPENDENCIES ON GOOGLE CODE-BASED MAVEN REPOSITORIES. *** The simplest convenient interface to the Google App Engine datastore

The newest version!
package com.googlecode.objectify.impl.conv;

import java.lang.reflect.Field;


/** 
 * 

During saving we have a little more context.

*/ public interface ConverterSaveContext { /** * @return true if the field we are converting data for is inside an embedded collection. */ boolean inEmbeddedCollection(); /** * @return the field that is being saved. */ Field getField(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy