![JAR search and dependency download from the Maven repository](/logo.png)
metamodel.constructor.impl.Constructor10Impl 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.Constructor10;
/**
* Implementation for constructor-definitions with 10 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
*/
public class Constructor10Impl extends AbstractConstructorImpl
implements Constructor10 {
public Constructor10Impl(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) {
super(declaringClass, param1Class, param2Class, param3Class, param4Class, param5Class, param6Class,
param7Class, param8Class, param9Class, param10Class);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy