annotate src/main/java/org/ssdt_ohio/devel/forms/pages/OneTwentyPayment.java @ 0:f4f8570d1c56

initial OTP form
author smith@nwoca.org
date Mon, 12 Nov 2012 16:29:11 +0000
parents
children
rev   line source
0
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
1 package org.ssdt_ohio.devel.forms.pages;
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
2
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
3 import java.text.SimpleDateFormat;
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
4 import java.util.Date;
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
5
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
6 public class OneTwentyPayment {
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
7
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
8 public String getDate() {
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
9 return new SimpleDateFormat("MM/dd/yyyy").format(new Date());
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
10 }
f4f8570d1c56 initial OTP form
smith@nwoca.org
parents:
diff changeset
11 }