Package net.geco.basics

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


      public void mouseReleased(MouseEvent e) {
      }
      @Override
      public void mousePressed(MouseEvent e) {
        Html html = new Html();
        html.open("div", "align=center"); //$NON-NLS-1$ //$NON-NLS-2$
        html.b("Geco version " + geco.version()).br().br(); //$NON-NLS-1$
        html.contents("Copyright (c) 2008-2011 Simon Denier.").br(); //$NON-NLS-1$
        html.contents(Messages.uiGet("GecoWindow.AboutLicenseText")).br(); //$NON-NLS-1$
        html.contents(Messages.uiGet("GecoWindow.AboutReadmeText")); //$NON-NLS-1$
        html.close("div"); //$NON-NLS-1$
View Full Code Here


    includeHeader(html, "result.css"); //$NON-NLS-1$
    Vector<Result> results = buildResults(config);
    for (Result result : results) {
      double courseScore = computeCourseScore(result);
      html.nl().tag("h2", "class=\"pool\"", result.getIdentifier()).nl(); //$NON-NLS-1$ //$NON-NLS-2$
      html.open("table").nl(); //$NON-NLS-1$
      for (RankedRunner data : result.getRanking()) {
        RunnerResult r = data.getRunnerData().getResult();
        writeHtml(
            data.getRunnerData(),
            Integer.toString(data.getRank()),
View Full Code Here

    Box config = Box.createVerticalBox();
    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

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.