jakarta.faces.application.ResourceDependencies Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jakarta.faces Show documentation
Show all versions of jakarta.faces Show documentation
EE4J Compatible Implementation for Jakarta Faces API
The newest version!
/*
* Copyright (c) 1997, 2020 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0, which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* This Source Code may also be made available under the following Secondary
* Licenses when the conditions for such availability set forth in the
* Eclipse Public License v. 2.0 are satisfied: GNU General Public License,
* version 2 with the GNU Classpath Exception, which is available at
* https://www.gnu.org/software/classpath/license.html.
*
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
*/
package jakarta.faces.application;
import static java.lang.annotation.ElementType.TYPE;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
import java.lang.annotation.Inherited;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
/**
*
* Container annotation to specify multiple {@link ResourceDependency} annotations on a single class. Example:
*
*
*
*
@ResourceDependencies( {
@ResourceDependency(library="corporate", name="css_master.css"),
@ResourceDependency(library="client01", name="layout.css"),
@ResourceDependency(library="corporate", name="typography.css"),
@ResourceDependency(library="client01", name="colorAndMedia.css"),
@ResourceDependency(library="corporate", name="table2.css"),
@ResourceDependency(library="fancy", name="commontaskssection.css"),
@ResourceDependency(library="fancy", name="progressBar.css"),
@ResourceDependency(library="fancy", name="css_ns6up.css")
})
*
*
*
*
*
*
* The action described in {@link ResourceDependency} must be taken for each @ResourceDependency
* present in the container annotation.
*
*
*
*/
@Retention(RUNTIME)
@Target(TYPE)
@Inherited
public @interface ResourceDependencies {
/**
* The individual resource dependencies
* @return The individual resource dependencies
*/
ResourceDependency[] value();
}