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

de.knightsoftnet.navigation.annotation.processor.InfoProperty Maven / Gradle / Ivy

Go to download

A view helper classes to generate a dynamic navigation in a gwtp project. The navigation changes when user changes (login/logout). It can highlight the entry of the selected view, even if you use the back button or reload the page.

There is a newer version: 2.3.1
Show newest version
package de.knightsoftnet.navigation.annotation.processor;

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

@Target(ElementType.METHOD)
@Retention(RetentionPolicy.SOURCE)
public @interface InfoProperty {
  /**
   * property file with version informations.
   *
   * @return property file name
   */
  String file() default "Version";

  /**
   * property name to read.
   *
   * @return property value name
   */
  String value();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy