Codota Logo
kieker.analysis.annotation
Code IndexAdd Codota to your IDE (free)

How to use kieker.analysis.annotation

Best Java code snippets using kieker.analysis.annotation (Showing top 4 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
Point p =
  • Codota Iconnew Point(x, y)
  • Codota Iconnew Point()
  • Codota IconMouseEvent e;e.getPoint()
  • Smart code suggestions by Codota
}
origin: net.kieker-monitoring/kieker

/**
 * This method provides the default properties, as supplied by the annotation.
 * 
 * @return The default configuration.
 */
private final Configuration getDefaultConfiguration() {
  final Configuration defaultConfiguration = new Configuration();
  // Get the (potential) annotation of our class
  final kieker.analysis.annotation.AnalysisController annotation = this.getClass().getAnnotation(kieker.analysis.annotation.AnalysisController.class);
  if (null != annotation) {
    // Run through the available properties and put them into our configuration
    for (final Property property : annotation.configuration()) {
      defaultConfiguration.setProperty(property.name(), property.defaultValue());
    }
  }
  return defaultConfiguration;
}
origin: net.kieker-monitoring/kieker

@kieker.analysis.annotation.AnalysisController(
    configuration = {
      @Property(name = IProjectContext.CONFIG_PROPERTY_NAME_RECORDS_TIME_UNIT, defaultValue = "NANOSECONDS"),
origin: kieker-monitoring/kieker

/**
 * This method provides the default properties, as supplied by the annotation.
 *
 * @return The default configuration.
 */
private final Configuration getDefaultConfiguration() {
  final Configuration defaultConfiguration = new Configuration();
  // Get the (potential) annotation of our class
  final kieker.analysis.annotation.AnalysisController annotation = this.getClass().getAnnotation(kieker.analysis.annotation.AnalysisController.class);
  if (null != annotation) {
    // Run through the available properties and put them into our configuration
    for (final Property property : annotation.configuration()) {
      defaultConfiguration.setProperty(property.name(), property.defaultValue());
    }
  }
  return defaultConfiguration;
}
origin: kieker-monitoring/kieker

@kieker.analysis.annotation.AnalysisController(configuration = {
  @Property(name = IProjectContext.CONFIG_PROPERTY_NAME_RECORDS_TIME_UNIT, defaultValue = "NANOSECONDS"),
  @Property(name = IProjectContext.CONFIG_PROPERTY_NAME_PROJECT_NAME, defaultValue = "AnalysisProject")
kieker.analysis.annotation

Most used classes

  • AnalysisController
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now