001package jmri;
002
003/**
004 * Implementation of NamedBeanPropertyDescriptor for true/false properties.
005 * @author Balazs Racz Copyright (C) 2018
006 */
007public abstract class BooleanPropertyDescriptor extends NamedBeanPropertyDescriptor<Boolean> {
008    public BooleanPropertyDescriptor(String key, boolean defVal) {
009        super(key, defVal);
010    }
011}