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