All Downloads are FREE. Search and download functionalities are using the official Maven repository.

metamodel.constructor.impl.Constructor14Impl Maven / Gradle / Ivy

/*
 * The MIT License (MIT)
 *
 * Copyright (c) 2014 Michael Kroll
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in all
 * copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 * SOFTWARE.
 */
package metamodel.constructor.impl;

import metamodel.constructor.Constructor14;

/**
 * Implementation for constructor-definitions with 14 parameters.
 *
 * @author Michael Kroll
 * @param  type of class that declares the method
 * @param  type of first parameter
 * @param  type of second parameter
 * @param  type of third parameter
 * @param  type of 4th parameter
 * @param  type of 5th parameter
 * @param  type of 6th parameter
 * @param  type of 7th parameter
 * @param  type of 8th parameter
 * @param  type of 9th parameter
 * @param  type of 10th parameter
 * @param  type of 11th parameter
 * @param  type of 12th parameter
 * @param  type of 13th parameter
 * @param  type of 14th parameter
 */
public class Constructor14Impl extends
        AbstractConstructorImpl implements
        Constructor14 {

	public Constructor14Impl(final Class declaringClass, final Class param1Class, final Class param2Class,
	        final Class param3Class, final Class param4Class, final Class param5Class,
	        final Class param6Class, final Class param7Class, final Class param8Class,
	        final Class param9Class, final Class param10Class, final Class param11Class,
	        final Class param12Class, final Class param13Class, final Class param14Class) {
		super(declaringClass, param1Class, param2Class, param3Class, param4Class, param5Class, param6Class,
		        param7Class, param8Class, param9Class, param10Class, param11Class, param12Class, param13Class,
		        param14Class);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy