org.jbeans
Class JavaBeanTools.NameHelper

java.lang.Object
  |
  +--org.jbeans.JavaBeanTools.NameHelper
Enclosing class:
JavaBeanTools

public static class JavaBeanTools.NameHelper
extends Object

This class is a small helper class that is used in the beans pacakge for assisting with property names


Field Summary
 int indexOfDot
          This stores the index of the .
 String localPropertyName
          This stores the local property name after a nested property name has been broken up into pieces
 String nestedPropertyName
          This stores the remainder of a nested property name after a nested it has been broken.
 
Constructor Summary
JavaBeanTools.NameHelper()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

indexOfDot

public int indexOfDot
This stores the index of the . character in the original property name string. This index is not valid for either of the Strings in this class

localPropertyName

public String localPropertyName
This stores the local property name after a nested property name has been broken up into pieces

nestedPropertyName

public String nestedPropertyName
This stores the remainder of a nested property name after a nested it has been broken. This is basically the original minus (the local property name plus the . character). ie

original - (local + ".")

Constructor Detail

JavaBeanTools.NameHelper

public JavaBeanTools.NameHelper()