source: other-projects/trunk/gs3-release-maker/tasks/antelope/src/ise/antelope/tasks/typedefs/string/UpperCase.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: 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.