com.github.rutledgepaulv.qbuilders.delegates.concrete.DoublePropertyDelegate Maven / Gradle / Ivy
package com.github.rutledgepaulv.qbuilders.delegates.concrete;
import com.github.rutledgepaulv.qbuilders.builders.QBuilder;
import com.github.rutledgepaulv.qbuilders.delegates.virtual.NumberPropertyDelegate;
import com.github.rutledgepaulv.qbuilders.properties.concrete.DoubleProperty;
import com.github.rutledgepaulv.qbuilders.structures.FieldPath;
public final class DoublePropertyDelegate> extends NumberPropertyDelegate implements DoubleProperty {
public DoublePropertyDelegate(FieldPath field, T canonical) {
super(field, canonical);
}
}