/** Java class "TimeStamp.java" generated from Poseidon for UML. * Poseidon for UML is developed by <A HREF="http://www.gentleware.com">Gentleware</A>. * Generated with <A HREF="http://jakarta.apache.org/velocity/">velocity</A> template engine. */ import java.lang.String; import java.util.*; public class TimeStamp { /////////////////////////////////////// // attributes private String theYear = "2004"; private String theMonth = "2"; private String theDay = "15"; private String theHour = "12"; private String theMinute = "11"; /////////////////////////////////////// // operations public String showTimeStamp() { // your code here return theYear +" "+ theMonth +" "+ theDay +" "+ theHour +" "+ theMinute; } // end showTimeStamp public static void main(String [] args){ TimeStamp aTimeStamp = new TimeStamp(); String output = aTimeStamp.showTimeStamp(); System.out.println(output); } } // end TimeStamp