D | Volume.java | 36 private HashMap<String, Look> mLooks = new HashMap<String, Look>(); 59 mLooks.put(name, new Look(name, color, opacity)); in addLook() 63 mLooks.put(name, new Look(name, color_string, opacity_string)); in addLook() 64 Look l = mLooks.get(name); in addLook() 70 class Look { class in Volume 75 public Look(String name, String color_string, String opacity_string) { in Look() method in Volume.Look 91 public Look(String name, int[][] color, int[][] opacity) { in Look() method in Volume.Look
|