view src/app/components/jvm-info/byteman/rules/en.locale.yaml @ 224:6568fdab115d

Move Byteman rules view into tabbed subview Reviewed-by: jkang Review-thread: http://icedtea.classpath.org/pipermail/thermostat/2017-September/025171.html
author Andrew Azores <aazores@redhat.com>
date Mon, 25 Sep 2017 10:31:07 -0400
parents src/app/components/jvm-info/byteman/en.locale.yaml@57a4676a9343
children 7d4f6ee803fb
line wrap: on
line source

byteman:
  rules:
    LOCAL_RULE_LABEL: Local Rule
    REMOTE_RULE_LABEL: Injected Rule
    NO_RULES_LABEL: '<no-rules-loaded>'
    PUSH_BTN_LABEL: '&gt;'
    PULL_BTN_LABEL: '&lt;'
    UNLOAD_BTN_LABEL: Unload Rule
    GENERATE_RULE_BTN_LABEL: Generate Rule Template
    RULE_TEMPLATE: |
      RULE Thermostat byteman template rule for {{mainClass}}
      CLASS {{mainClass}}
      METHOD main
      HELPER org.jboss.byteman.thermostat.helper.ThermostatHelper
      AT ENTRY
      IF true
      DO
      send("foo-marker", "action", "{{mainClass}}.main() called");
      ENDRULE