Examples of AutoCompletion


Examples of com.jidesoft.swing.AutoCompletion

            public void focusGained(FocusEvent e) {
                ((JTextField) jcb_url.getEditor().getEditorComponent()).selectAll();
            }
        });
        // AutoCompleteDecorator.decorate(jcb_url);
        AutoCompletion ac = new AutoCompletion(jcb_url);
        ac.setStrict(false);
        jp_north.add(jcb_url, BorderLayout.CENTER);
        jb_request = new JButton(icon_go);
        jb_request.setToolTipText("Go!");
        jb_request.addActionListener(new ActionListener() {
            @Override
View Full Code Here

Examples of com.jidesoft.swing.AutoCompletion

            public void focusGained(FocusEvent e) {
                editorComponent.selectAll();
            }
        });
       
        AutoCompletion ac = new AutoCompletion(this);
        ac.setStrict(false);
        ac.setStrictCompletion(false);
    }
View Full Code Here

Examples of nexj.core.meta.workflow.AutoCompletion

               m_bTimer = true;
            }
            else if (sElement.equals("ClassEvent"))
            {
               AutoCompletion completion = new AutoCompletion(assignment);

               loadWorkflowHandler(eventElement, completion, activity.getFlow());
               activity.addStep(completion);
            }
            else if (sElement.equals("ManualEvent"))
View Full Code Here

Examples of nexj.core.meta.workflow.AutoCompletion

               activity.addStep(assignment);

               if (isWorkflowHandler(element))
               {
                  AutoCompletion unassignment = new AutoCompletion(assignment);

                  loadWorkflowHandler(element, unassignment, workflow);
                  step = unassignment;
               }
               else
View Full Code Here

Examples of org.fife.ui.autocomplete.AutoCompletion

    if (provider==null) {
      provider = createCompletionProvider();
    }

    // Install auto-completion onto our text area.
    ac = new AutoCompletion(provider);
    ac.setListCellRenderer(new CCellRenderer());
    ac.setShowDescWindow(true);
    ac.setParameterAssistanceEnabled(true);
    ac.install(textArea);
    contentPane.add(new RTextScrollPane(textArea, true));
View Full Code Here

Examples of org.fife.ui.autocomplete.AutoCompletion

     */
    public void changeSyntaxStyle(String s) {
      // textArea.setSyntaxEditingStyle(determineScriptType(s));
      CompletionProvider provider = createCompletionProvider();

      AutoCompletion ac = new AutoCompletion(provider);
      ac.install(textArea);

    }
View Full Code Here

Examples of org.fife.ui.autocomplete.AutoCompletion

   */
  public void changeSyntaxStyle(Script s) {
    textArea.setSyntaxEditingStyle(determineScriptType(s));
    CompletionProvider provider = createCompletionProvider(s.getScript());

    AutoCompletion ac = new AutoCompletion(provider);
    ac.install(textArea);
   
  }
View Full Code Here

Examples of org.fife.ui.autocomplete.AutoCompletion

          scrollPane.setPreferredSize(pref);
        }
      }
    });

    AutoCompletion autoCompletion = new AutoCompletion(provider);
    autoCompletion.install(textArea);

    this.setLayout(new BorderLayout(3, 3));
    this.setBorder(new EmptyBorder(5, 5, 5, 5));
   
    this.add(scrollPane);
View Full Code Here

Examples of org.fife.ui.autocomplete.AutoCompletion

   
    final RSyntaxTextArea area = SwingFactory.createSyntaxTextArea("editor", Literal.EMPTY);

    area.addKeyListener(new CodeAssistant(area));
   
    AutoCompletion autoCompletion = new AutoCompletion(provider);
    autoCompletion.install(area);

    FileTabb tab = new FileTabb(area, file);

    if(file.exists()) {
     
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.