Package org.jayasoft.woj.client.ui.util

Examples of org.jayasoft.woj.client.ui.util.ModuleNameProcessor


        l.setText(Messages.getString("identify.name")); //$NON-NLS-1$
        _nameT = new Text(moduleInfoG, SWT.BORDER);
        _nameT.setLayoutData(new GridData(GridData.FILL, GridData.BEGINNING, true, false));
        _nameT.addModifyListener(_buttonUpdater);
        _nameT.addListener (SWT.Verify, inputVerifyer);
        ContentAssistHandler.createHandlerForText(_nameT, createContentAssistant(new ModuleNameProcessor(_orgT)));
        //revision
        l = new Label(moduleInfoG, SWT.NONE);
        l.setText(Messages.getString("identify.revision")); //$NON-NLS-1$
        _revisionT = new Text(moduleInfoG, SWT.BORDER);
        _revisionT.setLayoutData(new GridData(GridData.FILL, GridData.BEGINNING, true, false));
View Full Code Here

TOP

Related Classes of org.jayasoft.woj.client.ui.util.ModuleNameProcessor

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.