Coverage Report - com.sun.javafx.runtime.location.ObjectChangeListener
 
Classes in this File Line Coverage Branch Coverage Complexity
ObjectChangeListener
N/A
N/A
0
 
 1  
 package com.sun.javafx.runtime.location;
 2  
 
 3  
 /**
 4  
  * ObjectChangeListener
 5  
  *
 6  
  * @author Brian Goetz
 7  
  */
 8  
 public interface ObjectChangeListener<T> {
 9  
     /** Notifies the listener that the contents of the location may have changed. */
 10  
     public void onChange(T oldValue, T newValue);
 11  
 }