yes, i did extend BaseObject. my BaseObject is in the same package as my POJO 
. if i take out extends BaseObject from my pojo, the properties show up
correctly.  


my BaseObject
-----------------


/**
 * Base class for Model objects.  Child objects should implement toString(), 
 * equals() and hashCode();
 *
 * <p>
 *  BaseObject.java.html View Source 
 * </p>
 *
 * @author  mailto:[EMAIL PROTECTED] Matt Raible 
 */
public abstract class BaseObject implements Serializable {    
    public abstract String toString();
    public abstract boolean equals(Object o);
    public abstract int hashCode();
    
   
    private String searchPosition="anywhere";
        public String getSearchPosition() {
                return this.searchPosition;
        }
        public void setSearchPosition(String searchPosition) {
                this.searchPosition = searchPosition;
        }
    
    
}

-- 
View this message in context: 
http://www.nabble.com/ant-appgen-problem-tp20422727s2369p20463700.html
Sent from the AppFuse - User mailing list archive at Nabble.com.


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

Reply via email to