Package gui

Examples of gui.NeuralNetworkBaseItem


    combo.setBounds(92, 205, 157, 21);

    final Button aceptarButton = new Button(shell, SWT.NONE);
    aceptarButton.addSelectionListener(new SelectionAdapter() {
      public void widgetSelected(SelectionEvent e) {
        result = new NeuralNetworkBaseItem();
        result.setName(text.getText());
        result.setDescription(text_2.getText());
        result.setPath(text_1.getText());
        result.setType(combo.getSelectionIndex());
        shell.close();
View Full Code Here

TOP

Related Classes of gui.NeuralNetworkBaseItem

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.