groovy.transform.stc.ThirdParam Maven / Gradle / Ivy
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package groovy.transform.stc;
import org.codehaus.groovy.ast.ASTNode;
import org.codehaus.groovy.ast.ClassNode;
import org.codehaus.groovy.ast.MethodNode;
import org.codehaus.groovy.control.CompilationUnit;
import org.codehaus.groovy.control.SourceUnit;
/**
* A hint used to instruct the type checker to pick the third parameter type. For example:
* public <T,U,V> def doWith(T first, U second, V third, @ClosureParams(ThirdParam.class) Closure c) { ... }
*
* This class has several inner classes that also helps picking generic argument types instead of the parameter type.
*
* @author Cédric Champeau
* @since 2.3.0
*/
public class ThirdParam extends PickAnyArgumentHint {
public ThirdParam() {
super(2,-1);
}
/**
* A hint used to instruct the type checker to pick the first generic type of the third parameter type. For example:
* void <T> doWithElements(String first, Integer second, List<T> third, @ClosureParams(SecondParam.FirstGenericType.class) Closure c) { ... } }
*
* @author Cédric Champeau
* @since 2.3.0
*/
public static class FirstGenericType extends PickAnyArgumentHint {
public FirstGenericType() {
super(2,0);
}
}
/**
* A hint used to instruct the type checker to pick the second generic type of the third parameter type. For example:
* void <T,U> doWithElements(String first, Integer second, Tuple<T,U> third, @ClosureParams(SecondParam.SecondGenericType.class) Closure c) { ... }
*
* @author Cédric Champeau
* @since 2.3.0
*/
public static class SecondGenericType extends PickAnyArgumentHint {
public SecondGenericType() {
super(2,1);
}
}
/**
* A hint used to instruct the type checker to pick the second generic type of the third parameter type. For example:
* void <T,U,V> doWithElements(String first, Integer second, Triple<T,U,V> src, @ClosureParams(SecondParam.ThirdGenericType.class) Closure c) { ... }
*
* @author Cédric Champeau
* @since 2.3.0
*/
public static class ThirdGenericType extends PickAnyArgumentHint {
public ThirdGenericType() {
super(2,2);
}
}
/**
* A hint used to instruct the type checker to pick the type of the component of the third parameter type, which is therefore
* expected to be an array, like in this example:
* void <T> doWithArray(String first, int second, T[] third, @ClosureParams(FirstParam.Component.class) Closure c) { ... }
*/
public static class Component extends ThirdParam {
@Override
public ClassNode[] getParameterTypes(final MethodNode node, final String[] options, final SourceUnit sourceUnit, final CompilationUnit unit, final ASTNode usage) {
final ClassNode[] parameterTypes = super.getParameterTypes(node, options, sourceUnit, unit, usage);
parameterTypes[0] = parameterTypes[0].getComponentType();
return parameterTypes;
}
}
}