groovy.transform.SourceURI 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;
import org.codehaus.groovy.transform.GroovyASTTransformationClass;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Variable annotation used for getting the URI of the current script.
*
* The type of the variable annotated with {@code @SourceURI} must be assignment compatible with {@link java.net.URI}.
* It will be used to hold a URI object that references the source for the current script.
*
By default the URI
* will be made absolute (which is to say it will have an authority) in the case where a relative path was used
* for the source of the script. If you want to leave relative URIs as relative, then set allowRelative
* to true
.
*
*
* Example usage:
*
* {@code @groovy.transform.SourceURI} def sourceURI
*
* assert sourceURI instanceof java.net.URI
*
*
* @author Jim White
* @since 2.3.0
*/
@java.lang.annotation.Documented
@Retention(RetentionPolicy.SOURCE)
@Target({ElementType.LOCAL_VARIABLE, ElementType.FIELD})
@GroovyASTTransformationClass("org.codehaus.groovy.transform.SourceURIASTTransformation")
public @interface SourceURI {
boolean allowRelative() default false;
}