All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.samskivert.depot.clause.ForUpdate Maven / Gradle / Ivy

The newest version!
//
// Depot library - a Java relational persistence library
// https://github.com/threerings/depot/blob/master/LICENSE

package com.samskivert.depot.clause;

import java.util.Collection;

import com.samskivert.depot.PersistentRecord;
import com.samskivert.depot.impl.FragmentVisitor;

/**
 *  Represents a FOR UPDATE clause.
 */
public class ForUpdate implements QueryClause
{
    // from SQLExpression
    public Object accept (FragmentVisitor builder)
    {
        return builder.visit(this);
    }

    // from SQLExpression
    public void addClasses (Collection> classSet)
    {
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy