Package net.geco.basics

Examples of net.geco.basics.Html.tag()


    config.add(new JLabel(Html.htmlTag("font", "color=\"red\"", "Warning! Only use this function if station memories have been erased before the race.")));
    config.add(new JLabel("Place Start, Check, or Clear stations on the master station. " +
        "Function reads backup memory to detect:"));
    Html help = new Html();
    help.open("ul");
    help.tag("li", "registered runners which have started but not yet arrived");
    help.tag("li", "registered runners which did not start");
    help.tag("li", "unregistered e-cards");
    help.close("ul");
    config.add(new JLabel(help.close()));
   
View Full Code Here


    config.add(new JLabel("Place Start, Check, or Clear stations on the master station. " +
        "Function reads backup memory to detect:"));
    Html help = new Html();
    help.open("ul");
    help.tag("li", "registered runners which have started but not yet arrived");
    help.tag("li", "registered runners which did not start");
    help.tag("li", "unregistered e-cards");
    help.close("ul");
    config.add(new JLabel(help.close()));
   
    autoInsertB = new JCheckBox("Insert unregistered e-cards (look up in archive)");
View Full Code Here

        "Function reads backup memory to detect:"));
    Html help = new Html();
    help.open("ul");
    help.tag("li", "registered runners which have started but not yet arrived");
    help.tag("li", "registered runners which did not start");
    help.tag("li", "unregistered e-cards");
    help.close("ul");
    config.add(new JLabel(help.close()));
   
    autoInsertB = new JCheckBox("Insert unregistered e-cards (look up in archive)");
    autoInsertB.setToolTipText("If an unknown e-card is detected in station memory, add a new entry with e-card. Function will also fill in data from archive if available");
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.