1 19 20 25 26 27 28 29 30 package soot; 31 import soot.*; 32 33 import soot.util.*; 34 import java.util.*; 35 36 40 public class DoubleType extends PrimType 41 { 42 public DoubleType( Singletons.Global g ) {} 43 public static DoubleType v() { return G.v().soot_DoubleType(); } 44 45 public boolean equals(Object t) 46 { 47 return this == t; 48 } 49 50 51 public int hashCode() 52 { 53 return 0x4B9D7242; 54 } 55 56 public String toString() 57 { 58 return "double"; 59 } 60 61 public void apply(Switch sw) 62 { 63 ((TypeSwitch) sw).caseDoubleType(this); 64 } 65 } 66 | Popular Tags |