org.apache.myfaces.extensions.validator.core.storage
Interface RendererInterceptorPropertyStorage

All Known Implementing Classes:
DefaultRendererInterceptorPropertyStorage

public interface RendererInterceptorPropertyStorage

a storage which isn't used internally. it's for add-ons to easily store properties of interceptors. without braking backward compatibility, it's possible to use these properties in custom artifacts. rendering interception is an internal concept. so properties,... of it won't get into the api.

Since:
x.x.3

Method Summary
 Object getProperty(String key)
           
<T> T
getProperty(String key, Class<T> targetClass)
           
 void removeProperty(String key)
           
 void setProperty(String key, Object value)
           
 

Method Detail

setProperty

void setProperty(String key,
                 Object value)

getProperty

Object getProperty(String key)

getProperty

<T> T getProperty(String key,
                  Class<T> targetClass)

removeProperty

void removeProperty(String key)


Copyright © 2008-2012 The Apache Software Foundation. All Rights Reserved.