01: /*
02: * Copyright 2001-2007 Geert Bevin <gbevin[remove] at uwyn dot com> and
03: * JR Boyens <gnu-jrb[remove] at gmx dot net>
04: * Distributed under the terms of either:
05: * - the common development and distribution license (CDDL), v1.0; or
06: * - the GNU Lesser General Public License, v2.1 or later
07: * $Id: ManyToOneJoinColumnProcessor.java 3670 2007-02-26 23:31:23Z gbevin $
08: */
09: package com.uwyn.rife.database.querymanagers.generic;
10:
11: public interface ManyToOneJoinColumnProcessor {
12: boolean processJoinColumn(String columnName, String propertyName,
13: ManyToOneDeclaration declaration);
14: }
|