source: other-projects/trunk/gs3-release-maker/tasks/antelope/src/ise/antelope/tasks/typedefs/string/LowerCase.java@ 14627

Last change on this file since 14627 was 14627, checked in by oranfry, 17 years ago

initial import of the gs3-release-maker

File size: 353 bytes
Line 
1package ise.antelope.tasks.typedefs.string;
2
3/**
4 * Copyright 2003
5 *
6 * @version $Revision: 1.1 $
7 */
8public class LowerCase implements StringOp {
9 /**
10 * Description of the Method
11 *
12 * @param s
13 * @return Description of the Returned Value
14 */
15 public String execute(String s) {
16 return s.toLowerCase();
17 }
18}
19
20
Note: See TracBrowser for help on using the repository browser.