/* * This file is part of drugis.org MTC. * MTC is distributed from http://drugis.org/mtc. * Copyright (C) 2009-2011 Gert van Valkenhoef. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ package org.drugis.common.validation; import java.util.Arrays; import java.util.List; import com.jgoodies.binding.value.ValueModel; /** * Listens to nested ValueModels, and converts to true iff all are true. * Converts to null if any one is null, or not a Boolean. */ public class BooleanAndModel extends AbstractBooleanModel { private static final long serialVersionUID = 8591942709442108053L; public BooleanAndModel(List<ValueModel> models) { super(models); } public BooleanAndModel(ValueModel ... models) { this(Arrays.asList(models)); } protected Boolean calc() { for (ValueModel model : d_models) { if (!isBoolean(model)) { return null; } else if (!(Boolean)model.getValue()) { return false; } } return true; } }