Package test.interfaces

Examples of test.interfaces.CustomerPK


    /**
     * Called by create method(s)
     */
    public CustomerPK create(CustomerBMPBean bean)
    {
        CustomerPK pk = null;
        // INSERT INTO datasource (values) VALUES (bean.getX())
        // pk = new CustomerPK(pkfields)
        return pk;
    }
View Full Code Here


     * Finder that returns all rows
     */
    public Collection findAll()
    {
        List ret = new ArrayList();
        CustomerPK pk;
        // SELECT FROM datasource
        // for each resultset row
        //   pk = new CustomerPK(...);
        //   ret.add(pk);
        return ret;
View Full Code Here

TOP

Related Classes of test.interfaces.CustomerPK

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.