Coverage Report - com.sun.javafx.runtime.PointerFactory$Intf
 
Classes in this File Line Coverage Branch Coverage Complexity
PointerFactory$Intf
N/A
N/A
0
 
 1  
 package com.sun.javafx.runtime;
 2  
 
 3  
 import com.sun.javafx.runtime.location.*;
 4  
 import com.sun.javafx.runtime.sequence.Sequence;
 5  
 
 6  
 /**
 7  
  * PointerFactory$Intf
 8  
  *
 9  
  * @author Brian Goetz
 10  
  */
 11  
 public interface PointerFactory$Intf extends FXObject {
 12  
 
 13  
     public ObjectVariable<Pointer> make$$bound$int(IntLocation location);
 14  
 
 15  
     public ObjectVariable<Pointer> make$$bound$double(DoubleLocation location);
 16  
 
 17  
     public ObjectVariable<Pointer> make$$bound$boolean(BooleanLocation location);
 18  
 
 19  
     public <T> ObjectVariable<Pointer> make$$bound$java_lang_Object(ObjectLocation<T> location);
 20  
 
 21  
     public <T> ObjectVariable<Pointer> make$$bound$com_sun_javafx_runtime_sequence_Sequence(SequenceLocation<T> location);
 22  
 }