001/*
002 * PermissionsEx
003 * Copyright (C) zml and PermissionsEx contributors
004 *
005 * Licensed under the Apache License, Version 2.0 (the "License");
006 * you may not use this file except in compliance with the License.
007 * You may obtain a copy of the License at
008 *
009 *    http://www.apache.org/licenses/LICENSE-2.0
010 *
011 * Unless required by applicable law or agreed to in writing, software
012 * distributed under the License is distributed on an "AS IS" BASIS,
013 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
014 * See the License for the specific language governing permissions and
015 * limitations under the License.
016 */
017package ca.stellardrift.permissionsex.util;
018
019import org.immutables.value.Value;
020
021import java.lang.annotation.ElementType;
022import java.lang.annotation.Retention;
023import java.lang.annotation.RetentionPolicy;
024import java.lang.annotation.Target;
025
026/**
027 * Supertype for compile-time generated data
028 */
029@Target({ElementType.PACKAGE, ElementType.TYPE})
030@Retention(RetentionPolicy.CLASS)
031@Value.Style(
032        with = "*",
033        of = "new",
034        typeImmutable = "*Impl",
035        overshadowImplementation = true,
036        visibility = Value.Style.ImplementationVisibility.PACKAGE,
037        deferCollectionAllocation = true,
038        jdkOnly = true
039)
040public @interface ImmutablesStyle {
041
042}