001package org.avaje.ebean.typequery; 002 003import org.joda.time.DateMidnight; 004 005/** 006 * Joda DateMidnight property. 007 * 008 * @param <R> the root query bean type 009 */ 010public class PJodaDateMidnight<R> extends PBaseDate<R,DateMidnight> { 011 012 /** 013 * Construct with a property name and root instance. 014 * 015 * @param name property name 016 * @param root the root query bean instance 017 */ 018 public PJodaDateMidnight(String name, R root) { 019 super(name, root); 020 } 021 022 /** 023 * Construct with additional path prefix. 024 */ 025 public PJodaDateMidnight(String name, R root, String prefix) { 026 super(name, root, prefix); 027 } 028}