Package org.openbp.jaspira.option

Examples of org.openbp.jaspira.option.LocalizableOptionString


      // if the List contains a Wrapper get the correct optionvalue to compare
      // the right object together!
      if (o instanceof LocalizableOptionString)
      {
        LocalizableOptionString opt = (LocalizableOptionString) o;
        selectionField.addItem(opt.getDisplayText(), opt.getValue());
      }
      else
      {
        selectionField.addItem(o);
      }
View Full Code Here


    public OptionWidget createOptionWidget()
    {
      List values = new ArrayList(4);

      ResourceCollection res = getPlugin().getPluginResourceCollection();
      values.add(new LocalizableOptionString(res.getRequiredString("debugger.option.linktrace.skip"), DebuggerPlugin.LINKTRACE_SKIP));
      values.add(new LocalizableOptionString(res.getRequiredString("debugger.option.linktrace.target"), DebuggerPlugin.LINKTRACE_TARGET));
      values.add(new LocalizableOptionString(res.getRequiredString("debugger.option.linktrace.animationstop"), DebuggerPlugin.LINKTRACE_ANIMATION_STOP));
      values.add(new LocalizableOptionString(res.getRequiredString("debugger.option.linktrace.animationgo"), DebuggerPlugin.LINKTRACE_ANIMATION_GO));

      return new SelectionWidget(this, values);
    }
View Full Code Here

      public OptionWidget createOptionWidget()
      {
        List values = new ArrayList();

        ResourceCollection res = getPluginResourceCollection();
        values.add(new LocalizableOptionString(res.getRequiredString("displayobject.options.titlemode.value.text"), "text"));
        values.add(new LocalizableOptionString(res.getRequiredString("displayobject.options.titlemode.value.name"), "name"));

        return new RadioWidget(this, values);
      }
View Full Code Here

TOP

Related Classes of org.openbp.jaspira.option.LocalizableOptionString

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.