Beispiel #1
0
        protected internal virtual void discover(Type clazz, String propertyName)
        {
            /*
             *  this is gross and linear, but it keeps it straightforward.
             */

            try
            {
                propertyUsed = propertyName;
                property     = introspector.getProperty(clazz, propertyUsed);
                if (property != null)
                {
                    return;
                }

                /*
                 *  now the convenience, flip the 1st character
                 */
                propertyUsed = propertyName.Substring(0, 1).ToUpper() + propertyName.Substring(1);
                property     = introspector.getProperty(clazz, propertyUsed);
                if (property != null)
                {
                    return;
                }

                propertyUsed = propertyName.Substring(0, 1).ToLower() + propertyName.Substring(1);
                property     = introspector.getProperty(clazz, propertyUsed);
                if (property != null)
                {
                    return;
                }

                // check for a method that takes no arguments
                propertyUsed = propertyName;
                method       = introspector.getMethod(clazz, propertyUsed, new Object[0]);
                if (method != null)
                {
                    return;
                }

                // check for a method that takes no arguments, flipping 1st character
                propertyUsed = propertyName.Substring(0, 1).ToUpper() + propertyName.Substring(1);
                method       = introspector.getMethod(clazz, propertyUsed, new Object[0]);
                if (method != null)
                {
                    return;
                }

                propertyUsed = propertyName.Substring(0, 1).ToLower() + propertyName.Substring(1);
                method       = introspector.getMethod(clazz, propertyUsed, new Object[0]);
                if (method != null)
                {
                    return;
                }
            }
            catch (Exception e)
            {
                rlog.error("PROGRAMMER ERROR : PropertyExector() : " + e);
            }
        }