Package org.onebusaway.presentation.services.text

Examples of org.onebusaway.presentation.services.text.TextModification


    ClassPathResource resource = new ClassPathResource("org/onebusaway/presentation/impl/text/text-modifications.xml");

    XmlTextModificationsFactory factory = new XmlTextModificationsFactory();
    factory.setResource(resource);

    TextModification modification = factory.create();

    String result = modification.modify("they left the dog in the car");
    assertEquals("they right the cat in the car", result);
   
    result = modification.modify("the value is ( 1 )");
    assertEquals("the value is left paren #1 right paren", result);
  }
View Full Code Here

TOP

Related Classes of org.onebusaway.presentation.services.text.TextModification

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.