/* * Copyright 2014 Red Hat, Inc. and/or its affiliates. * * Licensed under the Eclipse Public License version 1.0, available at * http://www.eclipse.org/legal/epl-v10.html */ package org.ocpsoft.rewrite.param; import org.ocpsoft.rewrite.bind.Binding; /** * Marker interface for any object types that are used in the {@link ParameterConfiguration} interface. * * @see {@link Parameter} {@link Binding} {@link Converter} {@link Constraint} {@link Transposition} {@link Validator} * * @author <a href="mailto:lincolnbaxter@gmail.com">Lincoln Baxter, III</a> */ public interface ParameterConfigurator { }