com.tmarsteel.jcli.validation.configuration.ValidatorConfigurator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jcli Show documentation
Show all versions of jcli Show documentation
A Java library for parsing and validating CLI arguments (and Strings formatted alike).
The newest version!
/*
* Copyright (C) 2015 Tobias Marstaller
*
* 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 2
* 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, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
package com.tmarsteel.jcli.validation.configuration;
import com.tmarsteel.jcli.validation.MisconfigurationException;
import com.tmarsteel.jcli.validation.Validator;
public interface ValidatorConfigurator
{
/**
* Applies the preconfigurations in this builder to the given {@link Validator}
* @param p The parser to configure
* @throws MisconfigurationException If the preconfiguration of this builder
* cannot be applied because it is invalid/flawed.
*/
public void configure(Validator p)
throws MisconfigurationException;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy