Does BeanUtils support using is and set when dealing with booleans?

If I do this:

Map lMap = BeanUtils.describe(lBean);
Set lSet = lMap.keySet();
Iterator lIterator = lSet.iterator();
while (lIterator.hasNext()) 
{
  Object lObject = lIterator.next();

  String lTempValue = (String)lObject;
  System.out.println("Value is " + lTempValue);
}

it only shows properties with get and set methods, not my booleans that use is.

Is this not supported, or am I doing something wrong somewhere?

ta,

Tim.




--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to