1 package org.sapia.gumby; 2 3 26 public interface GuiEnv { 27 28 44 public Object get(String name); 45 46 51 public Object get(String name, String scope); 52 53 58 public Object acquire(String name) throws IllegalArgumentException ; 59 60 65 public Object acquire(String name, String scope) 66 throws IllegalArgumentException ; 67 68 83 public void put(String name, Object obj, String scope); 84 85 100 public void addScope(String name, Scope scope); 101 102 110 public void removeScope(String name); 111 112 121 public Scope getScope(String name); 122 123 129 public boolean hasScope(String name); 130 131 } 132 | Popular Tags |