Examples of JCustomTextField


Examples of org.onebusaway.quickstart.bootstrap.gui.widgets.JCustomTextField

    transitDataBundlePathDescription.setEditable(false);
    transitDataBundlePathDescription.setBackground(UIManager.getColor("control"));
    transitDataBundlePathDescription.setText("The Transit Data Bundle directory determines where the optimized bundle of transit data, which powers the OneBusAway application suite, will be stored.");
    add(transitDataBundlePathDescription, "cell 0 0");

    transitDataBundlePathTextField = new JCustomTextField();
    add(transitDataBundlePathTextField, "cell 0 1,growx");
    transitDataBundlePathTextField.setAlignmentX(Component.LEFT_ALIGNMENT);
    transitDataBundlePathTextField.setAlignmentY(Component.TOP_ALIGNMENT);
    transitDataBundlePathTextField.setColumns(20);
View Full Code Here

Examples of org.onebusaway.quickstart.bootstrap.gui.widgets.JCustomTextField

    add(txtpnIfYouHave, "cell 0 0,grow");

    JLabel lblTripUpdatesUrl = new JLabel("Trip Updates URL:");
    add(lblTripUpdatesUrl, "cell 0 1");

    tripUpdatesUrlTextField = new JCustomTextField();
    add(tripUpdatesUrlTextField, "cell 0 2,growx");
    tripUpdatesUrlTextField.setColumns(10);

    JLabel lblVehiclePositionsUrl = new JLabel("Vehicle Positions URL:");
    add(lblVehiclePositionsUrl, "cell 0 3");

    vehiclePositionsUrlTextField = new JCustomTextField();
    add(vehiclePositionsUrlTextField, "cell 0 4,growx");
    vehiclePositionsUrlTextField.setColumns(10);

    JLabel lblAlertsUrl = new JLabel("Alerts URL:");
    add(lblAlertsUrl, "cell 0 5");

    alertsUrlTextField = new JCustomTextField();
    add(alertsUrlTextField, "cell 0 6,growx");
    alertsUrlTextField.setColumns(10);
    initDataBindings();

    tripUpdatesUrlTextField.addTextPropertyChangeEvent();
View Full Code Here

Examples of org.onebusaway.quickstart.bootstrap.gui.widgets.JCustomTextField

    txtpnWhat.setEditable(false);
    txtpnWhat.setBackground(UIManager.getColor("control"));
    txtpnWhat.setText("OneBusAway reads transit schedule data in the GTFS format.  Please specify the path to your GTFS feed so that we can use it to build the OneBusAway transit data bundle.");
    add(txtpnWhat, "cell 0 0");

    gtfsPathTextField = new JCustomTextField();
    add(gtfsPathTextField, "cell 0 1,growx");
    gtfsPathTextField.setColumns(10);

    JButton btnNewButton = new JButton(
        Messages.getString("BundleDirectorySelectionPanel.4")); //$NON-NLS-1$
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.