source: release-kits/wirk3/ant-scripts/tasks/antelope/src/ise/antelope/tasks/typedefs/string/UpperCase.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: 354 bytes
Line 
1
2package ise.antelope.tasks.typedefs.string;
3
4/**
5 * Copyright 2003
6 *
7 * @version $Revision: 1.1 $
8 */
9public class UpperCase implements StringOp {
10 /**
11 * Description of the Method
12 *
13 * @param s
14 * @return Description of the Returned Value
15 */
16 public String execute(String s) {
17 return s.toUpperCase();
18 }
19}
20
21
Note: See TracBrowser for help on using the repository browser.