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