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
Author:
Gerhard Petracek

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

Method Detail

setProperty

void setProperty(java.lang.String key,
                 java.lang.Object value)

getProperty

java.lang.Object getProperty(java.lang.String key)

getProperty

<T> T getProperty(java.lang.String key,
                  java.lang.Class<T> targetClass)

removeProperty

void removeProperty(java.lang.String key)


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