Exemplo n.º 1
0
 @Override
 public String getPropertyOptions() {
   return AppUtil.readPluginResource(
       getClass().getName(),
       "/properties/form/selectBox.json",
       null,
       true,
       "message/form/SelectBox");
 }
Exemplo n.º 2
0
 public String getPropertyOptions() {
   AppDefinition appDef = AppUtil.getCurrentAppDefinition();
   String appId = appDef.getId();
   String appVersion = appDef.getVersion().toString();
   Object[] arguments = new Object[] {appId, appVersion};
   String json =
       AppUtil.readPluginResource(
           getClass().getName(), "/properties/app/jsonTool.json", arguments, true, null);
   return json;
 }
Exemplo n.º 3
0
 public String getPropertyOptions() {
   AppDefinition appDef = AppUtil.getCurrentAppDefinition();
   String appId = appDef.getId();
   String appVersion = appDef.getVersion().toString();
   Object[] arguments = new Object[] {appId, appVersion};
   String json =
       AppUtil.readPluginResource(
           getClass().getName(),
           "/properties/userview/dataListMenu.json",
           arguments,
           true,
           "message/userview/dataListMenu");
   return json;
 }