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

org.aya.util.ForLSP Maven / Gradle / Ivy

There is a newer version: 0.36.0
Show newest version
// Copyright (c) 2020-2024 Tesla (Yinsen) Zhang.
// Use of this source code is governed by the MIT license that can be found in the LICENSE.md file.
package org.aya.util;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * Annotated that the element is an API provided or
 * data stored to be used in the IDE-related or type checking-related features,
 * and shall not be used for evaluation and core term manipulation.
 */
@Retention(RetentionPolicy.SOURCE)
@Target({ElementType.FIELD, ElementType.METHOD, ElementType.TYPE})
public @interface ForLSP {
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy