Package net.sf.ehcache.statistics.beans
Class BooleanBeanProxy
- java.lang.Object
-
- net.sf.ehcache.statistics.beans.AttributeProxy<java.lang.Boolean>
-
- net.sf.ehcache.statistics.beans.BooleanBeanProxy
-
public class BooleanBeanProxy extends AttributeProxy<java.lang.Boolean>
A proxy for Boolean flavored bean proxies.- Author:
- cschanck
-
-
Constructor Summary
Constructors Constructor Description BooleanBeanProxy(java.lang.String name, java.lang.String description, boolean isRead, boolean isWrite)Instantiates a new boolean bean proxy.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Booleanget(java.lang.String name)Gets the value.voidset(java.lang.String name, java.lang.Boolean t)Sets the value.-
Methods inherited from class net.sf.ehcache.statistics.beans.AttributeProxy
getDescription, getName, getTypeClass, isRead, isWrite
-
-
-
-
Method Detail
-
get
public java.lang.Boolean get(java.lang.String name)
Description copied from class:AttributeProxyGets the value.- Overrides:
getin classAttributeProxy<java.lang.Boolean>- Parameters:
name- the name- Returns:
- the value
-
set
public void set(java.lang.String name, java.lang.Boolean t)Description copied from class:AttributeProxySets the value.- Overrides:
setin classAttributeProxy<java.lang.Boolean>- Parameters:
name- the namet- the value
-
-