Gets an object. @param key the key that identifies the object @return the object
(String key)
| 41 | * @return the object |
| 42 | */ |
| 43 | public Object getObject(String key) { |
| 44 | Object obj=myObjects.get(key); |
| 45 | if(obj==null)obj=myViews.get(key); |
| 46 | return obj; |
| 47 | } |
| 48 | |
| 49 | |
| 50 | /** |