public void getProperty()

in src/java/org/apache/fulcrum/intake/model/Field.java [876:900]


    public void getProperty(Object obj)
            throws IntakeException
    {
        try
        {
            @SuppressWarnings("unchecked") // invoke returns Object
			T t = (T)getter.invoke(obj);
			validValue = t;
        }
        catch (IllegalAccessException e)
        {
            throwSetGetException("getter", obj, this.getDisplayName(),
                    this.group.getIntakeGroupName(), e);
        }
        catch (IllegalArgumentException e)
        {
            throwSetGetException("getter", obj, this.getDisplayName(),
                    this.group.getIntakeGroupName(), e);
        }
        catch (InvocationTargetException e)
        {
            throwSetGetException("getter", obj, this.getDisplayName(),
                    this.group.getIntakeGroupName(), e);
        }
    }