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 LongType extends PrimType 41 { 42 public LongType( Singletons.Global g ) {} 43 public static LongType v() { return G.v().soot_LongType(); } 44 45 public boolean equals(Object t) 46 { 47 return this == t; 48 } 49 50 public int hashCode() 51 { 52 return 0x023DA077; 53 } 54 55 public String toString() 56 { 57 return "long"; 58 } 59 60 public void apply(Switch sw) 61 { 62 ((TypeSwitch) sw).caseLongType(this); 63 } 64 } 65 | Popular Tags |