Back to project page DKO.
The source code is released under:
GNU Lesser General Public License
If you think the Android project DKO listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package org.kered.dko; /* ww w. j av a 2 s . co m*/ import java.util.List; /** * These interfaces are marker interfaces for internal implementation details. * Any other implementations passed to DKO will likely result in an error. * @author Derek Anderson * @param <T> */ public interface Expression<T> { public interface Function<T> { } public interface Select<T> extends Expression<T> { Select<T> __getUnderlying(); } public interface OrderBy<T> { public OrderBy<T> asc(); public OrderBy<T> desc(); } void __getSQL(StringBuffer sb, List<Object> bindings, SqlContext context); Class<T> getType(); }