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

metamodel.method.impl.Method16Impl 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.method.impl;

import metamodel.method.Method16;

/**
 * Implementation for method-definitions with 16 parameters.
 * 

* For Methods with return type {@code void}, the type parameter RT is {@link Void}. * * @author Michael Kroll * @param type of class that declares the method * @param return type * @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 * @param type of 15th parameter * @param type of 16th parameter */ public class Method16Impl extends AbstractMethodImpl implements Method16 { public Method16Impl(final String name, 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, final Class param15Class, final Class param16Class) { super(name, declaringClass, param1Class, param2Class, param3Class, param4Class, param5Class, param6Class, param7Class, param8Class, param9Class, param10Class, param11Class, param12Class, param13Class, param14Class, param15Class, param16Class); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy