Package nextapp.echo2.webcontainer

Examples of nextapp.echo2.webcontainer.ContainerContext


     * @param e
     */
    public void actionPerformed(ActionEvent e) {
        EventListener[] listeners = listenerList.getListeners(ActionListener.class);
        for (int i = 0; i < listeners.length; i++) {
            ActionListener actionListener = (ActionListener) listeners[i];
            try {
                actionListener.actionPerformed(
                        new ActionEvent(JbsOptionPane.this, getActionCommand((Component) e.getSource())));
            } catch (Throwable t) {
                ExceptionHandler.handle(t);
            }
        }
View Full Code Here


 
  protected void addCompany() {
    fmSelectCompany = new FmJbsBaseObjectList(JbsL10N.getString("JbsCompany.selectCompany"));
    fmSelectCompany.setPnList(new PnCompanyList());
    fmSelectCompany.showForm();
    fmSelectCompany.addActionListener(new ActionListener() {
     
      private static final long serialVersionUID = 1L;

      public void actionPerformed(ActionEvent arg0) {
        if (arg0.getActionCommand().equals(JbsDialogWindowOKCancel.ACTION_OK)) {
View Full Code Here

  protected void createComponents() {
    lbCompanies= new LbCompanies();
   
    btnAdd = new JbsButton("+");
    btnAdd.setWidth(new JbsExtent(20));
    btnAdd.addActionListener(new ActionListener() {

      private static final long serialVersionUID = 1L;

      public void actionPerformed(ActionEvent arg0) {
        addCompany();
      }
     
    });
   
    btnDelete = new JbsButton("-");
    btnDelete.setWidth(new JbsExtent(20));
    btnDelete.addActionListener(new ActionListener() {

      private static final long serialVersionUID = 1L;

      public void actionPerformed(ActionEvent arg0) {
        deleteCompany();
View Full Code Here

    colMain.add(rowButtons);
   
    KeyStrokeListener ks = new KeyStrokeListener();
    ks.addKeyCombination(KeyStrokeListener.VK_INSERT,"INSERT");
    ks.addKeyCombination(KeyStrokeListener.VK_DELETE,"DELETE");
    ks.addActionListener(new ActionListener() {

      private static final long serialVersionUID = 1L;

      public void actionPerformed(ActionEvent arg0) {
        if (arg0.getActionCommand().equals("INSERT"))
View Full Code Here

        this.addControl(groupName, groupName, control);
    }

    public void addSeparator(String groupName) {
        Row row = new Row();
        ColumnLayoutData layout = new ColumnLayoutData();
        layout.setHeight(new JbsExtent(15, JbsExtent.PX));
        row.setLayoutData(layout);
        this.addControl(groupName, row);
    }
View Full Code Here

        colMain.add(label);
    }
   
    public void addBlankLine() {
        Row row = new Row();
        ColumnLayoutData layout = new ColumnLayoutData();
        layout.setHeight(new JbsExtent(15,JbsExtent.PX));
        row.setLayoutData(layout);
        colMain.add(row);
    }
View Full Code Here

                    break;
                default :
                    align = Alignment.LEFT;
            }
           
            TableLayoutData layoutData = (TableLayoutData)((Label)component).getLayoutData();
            layoutData.setAlignment(new Alignment(align, Alignment.CENTER));
            ((Label)component).setLayoutData(layoutData);
        }
        return component;
    }
View Full Code Here

        //If nor group is found then create a new one:
        if (newColumn == null) {
            newColumn = new Column();
            newColumn.setId(groupName);
            newColumn.setStyleName("Default");
            AccordionPaneLayoutData layoutData = new AccordionPaneLayoutData();
            layoutData.setTitle(groupTitle);
            newColumn.setLayoutData(layoutData);
            this.add(newColumn);
        }
        return newColumn;
    }
View Full Code Here

        setStyleSheet(Styles.DEFAULT_STYLE_SHEET);
       
        initLanguages("de_DE","de_DE","de_DE");

       
        ContainerContext cc = (ContainerContext) this.getContextProperty(ContainerContext.CONTEXT_PROPERTY_NAME);
        logger.debug("Servlet-URI: "+cc.getServletUri());
        cc.setServerDelayMessage(Styles.getServerDelayMsg());   
       

        mainWindow = new Window();
        mainWindow.setTitle("openJBS");
        //mainWindow.setContent(new PnMain());
View Full Code Here

    private void updatePollingInterval(boolean reset) {
        if (reset) {
            lastActionTime = System.currentTimeMillis();
        }
        pollingInterval = calculatePollingInterval();
        ContainerContext containerContext = (ContainerContext) getContextProperty(
                ContainerContext.CONTEXT_PROPERTY_NAME);
        containerContext.setTaskQueueCallbackInterval(incomingMessageQueue, pollingInterval);
    }
View Full Code Here

TOP

Related Classes of nextapp.echo2.webcontainer.ContainerContext

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.