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

io.ebean.bean.BeanDiffVisitor Maven / Gradle / Ivy

There is a newer version: 15.8.1
Show newest version
package io.ebean.bean;

/**
 * Visitor for collecting new/old values for a bean update.
 */
public interface BeanDiffVisitor {

  /**
   * Collect a new/old value pair.
   */
  void visit(int position, Object newVal, Object oldVal);

  /**
   * Start processing an associated bean.
   */
  void visitPush(int position);

  /**
   * Stop processing an associated bean.
   */
  void visitPop();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy