Package org.campware.dream.om

Examples of org.campware.dream.om.LocationCategory.save()


    public void doInsert(RunData data, Context context)
        throws Exception
    {
        LocationCategory entry = new LocationCategory();
        data.getParameters().setProperties(entry);
        entry.save();
    }

    /**
     * Update a record in the database with the
     * information present in the web form.
View Full Code Here


    {
        LocationCategory entry = new LocationCategory();
        data.getParameters().setProperties(entry);
        entry.setModified(true);
        entry.setNew(false);
        entry.save();
    }

    /**
     * Delete a record from the database using
     * the unique id gleaned from the web form.
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.