763764765766767768769
public boolean containsValue(Object value) { return false; } public Interceptor get(Object key) { return new ModifyInterceptor(); }
790791792793794795796797
}}; } public Collection<Interceptor> values() { return new ArrayList<Interceptor>() {{ add(new ModifyInterceptor()); }}; }
801802803804805806807808809810811
add(new Entry<String, Interceptor>() { public String getKey() { return "Modify"; } public Interceptor getValue() { return new ModifyInterceptor(); } public Interceptor setValue(Interceptor value) { throw new UnsupportedOperationException(); } });
751752753754755756757
778779780781782783784785
789790791792793794795796797798799
764765766767768769770