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