Exemplo n.º 1
0
 /**
  * Retrieves the old configuration key, if preferences have not yet been set based on the builder
  * id.
  *
  * @return the name of the program runner arguments -preference in the plugin preferences
  */
 private String getArgumentsPreferenceNameByClass() {
   String clazz = runner.getLegacyClass();
   if (clazz == null) {
     clazz = runner.getClass().getName();
   }
   return clazz + "_args";
 }
Exemplo n.º 2
0
 /**
  * Retrieves the old configuration key, if preferences have not yet been set based on the builder
  * id.
  *
  * @return the name of the program runner path -preference in the plugin preferences
  */
 private String getCommandPreferenceNameByClass() {
   String clazz = runner.getLegacyClass();
   if (clazz == null) {
     clazz = runner.getClass().getName();
   }
   return clazz + "_prog";
 }