source: release-kits/wirk3/ant-scripts/tasks/antelope/src/ise/antelope/tasks/typedefs/string/LowerCase.java@ 15023

Last change on this file since 15023 was 15023, checked in by oranfry, 16 years ago

did the bulk of the work on wirk3

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.