Is it possible with Java lib JODA Time to create a date from
Java has a Calendar function that can calculate it (http://docs.oracle.com/javase/7/docs/api/java/util/GregorianCalendar.html#setWeekDate%28int,%20int,%20int%29)
DateTime dt = new DateTime();
dt = dt.withYear(2015);
dt = dt.withWeekOfWeekyear(10);
dt = dt.withDayOfWeek(3);