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

org.apache.juneau.annotation.NamePropertyAnnotation 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 org.apache.juneau.annotation;

import static java.lang.annotation.ElementType.*;
import static java.lang.annotation.RetentionPolicy.*;
import static org.apache.juneau.internal.ArrayUtils.*;

import java.lang.annotation.*;
import java.lang.reflect.*;

import org.apache.juneau.*;
import org.apache.juneau.reflect.*;
import org.apache.juneau.svl.*;

/**
 * Utility classes and methods for the {@link NameProperty @NameProperty} annotation.
 *
 * 
See Also:
    *
*/ public class NamePropertyAnnotation { //----------------------------------------------------------------------------------------------------------------- // Static //----------------------------------------------------------------------------------------------------------------- /** Default value */ public static final NameProperty DEFAULT = create().build(); /** * Instantiates a new builder for this class. * * @return A new builder object. */ public static Builder create() { return new Builder(); } /** * Instantiates a new builder for this class. * * @param on The targets this annotation applies to. * @return A new builder object. */ public static Builder create(String...on) { return create().on(on); } /** * Creates a copy of the specified annotation. * * @param a The annotation to copy.s * @param r The var resolver for resolving any variables. * @return A copy of the specified annotation. */ public static NameProperty copy(NameProperty a, VarResolverSession r) { return create() .on(r.resolve(a.on())) .build(); } //----------------------------------------------------------------------------------------------------------------- // Builder //----------------------------------------------------------------------------------------------------------------- /** * Builder class. * *
See Also:
    *
  • {@link org.apache.juneau.BeanContext.Builder#annotations(Annotation...)} *
*/ public static class Builder extends TargetedAnnotationMFBuilder { /** * Constructor. */ protected Builder() { super(NameProperty.class); } /** * Instantiates a new {@link NameProperty @NameProperty} object initialized with this builder. * * @return A new {@link NameProperty @NameProperty} object. */ public NameProperty build() { return new Impl(this); } // @Override /* GENERATED - TargetedAnnotationBuilder */ public Builder on(String...values) { super.on(values); return this; } @Override /* GENERATED - TargetedAnnotationMFBuilder */ public Builder on(Field...value) { super.on(value); return this; } @Override /* GENERATED - TargetedAnnotationMFBuilder */ public Builder on(Method...value) { super.on(value); return this; } // } //----------------------------------------------------------------------------------------------------------------- // Implementation //----------------------------------------------------------------------------------------------------------------- private static class Impl extends TargetedAnnotationImpl implements NameProperty { Impl(Builder b) { super(b); postConstruct(); } } //----------------------------------------------------------------------------------------------------------------- // Appliers //----------------------------------------------------------------------------------------------------------------- /** * Applies targeted {@link NameProperty} annotations to a {@link org.apache.juneau.BeanContext.Builder}. */ public static class Applier extends AnnotationApplier { /** * Constructor. * * @param vr The resolver for resolving values in annotations. */ public Applier(VarResolverSession vr) { super(NameProperty.class, BeanContext.Builder.class, vr); } @Override public void apply(AnnotationInfo ai, BeanContext.Builder b) { NameProperty a = ai.inner(); if (isEmptyArray(a.on())) return; b.annotations(copy(a, vr())); } } //----------------------------------------------------------------------------------------------------------------- // Other //----------------------------------------------------------------------------------------------------------------- /** * A collection of {@link NameProperty @NameProperty annotations}. */ @Documented @Target({METHOD,TYPE}) @Retention(RUNTIME) @Inherited public static @interface Array { /** * The child annotations. * * @return The annotation value. */ NameProperty[] value(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy