Tabnine Logo
AnalysisController.configuration
Code IndexAdd Tabnine to your IDE (free)

How to use
configuration
method
in
kieker.analysis.annotation.AnalysisController

Best Java code snippets using kieker.analysis.annotation.AnalysisController.configuration (Showing top 2 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: 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.annotationAnalysisControllerconfiguration

Popular methods of AnalysisController

  • <init>

Popular in Java

  • Updating database using SQL prepared statement
  • getSharedPreferences (Context)
  • requestLocationUpdates (LocationManager)
  • addToBackStack (FragmentTransaction)
  • URI (java.net)
    A Uniform Resource Identifier that identifies an abstract or physical resource, as specified by RFC
  • ByteBuffer (java.nio)
    A buffer for bytes. A byte buffer can be created in either one of the following ways: * #allocate
  • Random (java.util)
    This class provides methods that return pseudo-random values.It is dangerous to seed Random with the
  • AtomicInteger (java.util.concurrent.atomic)
    An int value that may be updated atomically. See the java.util.concurrent.atomic package specificati
  • Servlet (javax.servlet)
    Defines methods that all servlets must implement. A servlet is a small Java program that runs within
  • HttpServlet (javax.servlet.http)
    Provides an abstract class to be subclassed to create an HTTP servlet suitable for a Web site. A sub
  • Top plugins for Android Studio
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

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