BBean.java :  » GWT » gwt-maven » test » destination » Java Open Source

Java Open Source » GWT » gwt maven 
gwt maven » test » destination » BBean.java
/*
 * BBean.java
 *
 * Created on November 29, 2006, 4:08 PM
 *
 * To change this template, choose Tools | Template Manager
 * and open the template in the editor.
 */

package test.destination;

/**
 *
 * @author cooper
 */
public class BBean {
    
    private String value;
    private ABean parent;
    
    /** Creates a new instance of BBean */
    public BBean() {
    }

    public String getValue() {
        return value;
    }

    public void setValue(String value) {
        this.value = value;
    }

    public ABean getParent() {
        return parent;
    }

    public void setParent(ABean parent) {
        this.parent = parent;
    }
    
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.