source: main/trunk/ant-tasks/src/org/greenstone/anttasks/InsertUniqueValueJob.java@ 22480

Last change on this file since 22480 was 22480, checked in by sjm84, 14 years ago

Added an ant task that will insert a unique number to the end of a tokens that match the given pattern

  • Property svn:executable set to *
File size: 442 bytes
Line 
1package org.greenstone.anttasks;
2public class InsertUniqueValueJob extends org.apache.tools.ant.types.DataType {
3
4 String pattern = null;
5 boolean winPath = false;
6
7 public void setPattern(String pattern) {
8 this.pattern = pattern;
9 }
10
11 public void setWinPath( boolean winPath ) {
12 this.winPath = winPath;
13 }
14
15 public String getPattern() {
16 return pattern;
17 }
18 public boolean getWinPath() {
19 return winPath;
20 }
21
22}
23
Note: See TracBrowser for help on using the repository browser.