source: release-kits/lirk3/ant-scripts/tasks/antelope/src/ise/antelope/tasks/typedefs/string/Trim.java@ 14982

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

initial import of LiRK3

File size: 341 bytes
Line 
1package ise.antelope.tasks.typedefs.string;
2
3/**
4 * Copyright 2003
5 *
6 * @version $Revision: 1.1 $
7 */
8public class Trim 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.trim();
17 }
18}
19
20
Note: See TracBrowser for help on using the repository browser.