Package org.openbp.common.rc

Examples of org.openbp.common.rc.ResourceCollection


   * @param page Wizard page to add the button to
   * @return The button
   */
  protected JButton createAddButton(final GeneratorContext context, final JaspiraWizardObjectPage page)
  {
    ResourceCollection res = page.getWizard().getResource();
    JButton btn = createButton(res, "wizard.type.addmemberbutton");

    // When clicking the run button, remove the current member
    btn.addActionListener(new ActionListener()
    {
View Full Code Here


   * @param page Wizard page to add the button to
   * @return The button
   */
  protected JButton createRemoveButton(final GeneratorContext context, final JaspiraWizardObjectPage page)
  {
    ResourceCollection res = page.getWizard().getResource();
    JButton btn = createButton(res, "wizard.type.removememberbutton");

    // When clicking the run button, remove this member
    btn.addActionListener(new ActionListener()
    {
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.common.rc.ResourceCollection

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.