Examples of idString()


Examples of edu.umd.hooka.corpora.ParallelChunk.idString()

      //key: a single sentence in both languages and alignment
      //ignore value. each key is parallel sentence and its alignment, in xml format

      ParallelChunk c = pcr.parseString(key.toString());
      ok.set(c.idString());
     
      //Chunk is an array of tokens in the sentence, without any special tokenization (just separated by spaces)
      Chunk fc = c.getChunk(src);
      Chunk ec = c.getChunk(tgt);
      if (fc == null || ec == null) {
View Full Code Here

Examples of net.geco.model.Runner.idString()

    if( !oldCourse.getName().equals(newCourse) ) {
      runner.setCourse(registry().findCourse(newCourse));
      registry().updateRunnerCourse(oldCourse, runner);
      announcer().announceCourseChange(runner, oldCourse);
      geco().log(Messages.getString("RunnerControl.CourseChangeMessage") //$NON-NLS-1$
            + runner.idString() + Messages.getString("RunnerControl.FromMessage") //$NON-NLS-1$
            + oldCourse.getName() + Messages.getString("RunnerControl.ToMessage") //$NON-NLS-1$
            + newCourse);
      // Proceed by checking the new status
      if( runnerData.statusIsRecheckable() ) {
        Status oldStatus = runnerData.getResult().getStatus();
View Full Code Here

Examples of net.geco.model.Runner.idString()

    runner.setFirstname(record[2]);
    runner.setLastname(record[3]);
    Club club = registry.findClub(record[4]);
    if( club == null ) {
      runner.setClub(registry.noClub());
      System.err.println("Unknown club " + record[4] + " for runner " + runner.idString()); //$NON-NLS-1$ //$NON-NLS-2$
    } else {
      runner.setClub(club);
    }
    Course course = registry.findCourse(record[5]);
    if( course == null ) {
View Full Code Here

Examples of net.geco.model.Runner.idString()

      runner.setClub(club);
    }
    Course course = registry.findCourse(record[5]);
    if( course == null ) {
      runner.setCourse(registry.anyCourse());
      System.err.println("Unknown course " + record[5] + " for runner " + runner.idString()); //$NON-NLS-1$ //$NON-NLS-2$
    } else {
      runner.setCourse(course);
    }
    Category cat = registry.findCategory(record[7]);
    if( cat == null ) {
View Full Code Here

Examples of net.geco.model.Runner.idString()

      runner.setCourse(course);
    }
    Category cat = registry.findCategory(record[7]);
    if( cat == null ) {
      runner.setCategory(registry.noCategory());
      System.err.println("Unknown category " + record[7] + " for runner " + runner.idString()); //$NON-NLS-1$ //$NON-NLS-2$
    } else {
      runner.setCategory(cat);
    }
    runner.setRegisteredStarttime( TimeManager.absoluteTime(TimeManager.safeParse(record[8]), zeroTime) );
    runner.setRentedEcard(Boolean.parseBoolean(record[6]));
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.