Examples of GDate


Examples of org.gstreamer.glib.GDate

*/
public class GDateTest {
   
    public static void main(String[] args) {
      Calendar cal = Calendar.getInstance();
        GDate date = GDate.createInstance(cal.get(Calendar.DAY_OF_MONTH),
                          cal.get(Calendar.MONTH) + 1,
                          cal.get(Calendar.YEAR));
        System.out.println(date);
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.