congrats Icon
New! Tabnine Pro 14-day free trial
Start a free trial
Tabnine Logo
AnalysisController
Code IndexAdd Tabnine to your IDE (free)

How to use
AnalysisController
in
kieker.analysis.annotation

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

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

@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")
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;
}
kieker.analysis.annotationAnalysisController

Most used methods

  • <init>
  • configuration

Popular in Java

  • Start an intent from android
  • runOnUiThread (Activity)
  • addToBackStack (FragmentTransaction)
  • orElseThrow (Optional)
    Return the contained value, if present, otherwise throw an exception to be created by the provided s
  • Graphics2D (java.awt)
    This Graphics2D class extends the Graphics class to provide more sophisticated control overgraphics
  • BufferedImage (java.awt.image)
    The BufferedImage subclass describes an java.awt.Image with an accessible buffer of image data. All
  • MalformedURLException (java.net)
    This exception is thrown when a program attempts to create an URL from an incorrect specification.
  • URLEncoder (java.net)
    This class is used to encode a string using the format required by application/x-www-form-urlencoded
  • MessageFormat (java.text)
    Produces concatenated messages in language-neutral way. New code should probably use java.util.Forma
  • StringTokenizer (java.util)
    Breaks a string into tokens; new code should probably use String#split.> // Legacy code: StringTo
  • PhpStorm for WordPress
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyStudentsTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now