/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

/**
 *
 * @author Andréa
 */
public interface Observer {

    void update(Triplet.FieldName fieldName,Integer newValue);
    
}
