Coverage Report - com.sun.javafx.runtime.PointerFactory
 
Classes in this File Line Coverage Branch Coverage Complexity
PointerFactory
73%
8/11
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
 8  
  *
 9  
  * @author Brian Goetz
 10  
  */
 11  
 public class PointerFactory implements PointerFactory$Intf, FXObject {
 12  
     
 13  
     public PointerFactory() {
 14  0
         this(false);
 15  0
         initialize$();
 16  0
     }
 17  
 
 18  3
     public PointerFactory(boolean dummy) {
 19  3
     }
 20  
 
 21  3
     public void initialize$() { }
 22  
 
 23  
     public ObjectVariable<Pointer> make$$bound$int(IntLocation location) {
 24  8
         return ObjectVariable.make(Pointer.make(location));
 25  
     }
 26  
 
 27  
     public ObjectVariable<Pointer> make$$bound$double(DoubleLocation location) {
 28  2
         return ObjectVariable.make(Pointer.make(location));
 29  
     }
 30  
 
 31  
     public ObjectVariable<Pointer> make$$bound$boolean(BooleanLocation location) {
 32  1
         return ObjectVariable.make(Pointer.make(location));
 33  
     }
 34  
 
 35  
     public <T> ObjectVariable<Pointer> make$$bound$java_lang_Object(ObjectLocation<T> location) {
 36  1
         return ObjectVariable.make(Pointer.make(location));
 37  
     }
 38  
 
 39  
     public <T> ObjectVariable<Pointer> make$$bound$com_sun_javafx_runtime_sequence_Sequence(SequenceLocation<T> location) {
 40  1
         return ObjectVariable.make(Pointer.make(location));
 41  
     }
 42  
 }