Package xplanetconfigurator.find

Examples of xplanetconfigurator.find.Selection


    private void findNext() {
        if (this.foundExpressions == null) {
            return;
        }
        Selection selection = this.foundExpressions.next();
        ISearchable seachable = selection.getSearchable(); // The ControlPanel
        int start = selection.getStart();
        int end = selection.getEnd();
        String idControlPanel = selection.toString();
        this.selectControlPanel(idControlPanel);
        JTextComponent textComponent = seachable.getTextComponent();
        // textComponent.setEditable(true);
        // textComponent.requestFocus();
        textComponent.setCaretColor(Color.BLUE);
View Full Code Here

TOP

Related Classes of xplanetconfigurator.find.Selection

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.