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

com.citytechinc.cq.component.annotations.editconfig.ActionConfig Maven / Gradle / Ivy

There is a newer version: 7.0.0
Show newest version
package com.citytechinc.cq.component.annotations.editconfig;

/**
 * Defines a single Action Configuration for a Component. For more information
 * on using Action Configurations see the Configuring Edit Behavior Documentation.
 */
public @interface ActionConfig {

    /**
     * The xtype to use for the Action Configuration.
     *
     * @return String
     */
    String xtype() default "";

    /**
     * The handler for the Action Configuration.
     *
     * @return String
     */
    String handler() default "";

    /**
     * The text to associate with the action.
     *
     * @return String
     */
    String text() default "";

    /**
     * A set of properties which are written to the Action Configuration xml
     * node.
     *
     * @return ActionConfigProperty[]
     */
    ActionConfigProperty[] additionalProperties() default {};
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy