Sha256: fa10c1a59d7e4381493ee2d0282d2246d77927e084715d8cf177561b42120aa7
Contents?: true
Size: 723 Bytes
Versions: 98
Compression:
Stored size: 723 Bytes
Contents
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package com.jrjackson; import java.text.DateFormatSymbols; import java.text.SimpleDateFormat; import java.util.Locale; /** * * @author guy */ public class RubyDateFormat extends SimpleDateFormat{ public RubyDateFormat() { } public RubyDateFormat(String pattern) { super(pattern); } public RubyDateFormat(String pattern, Locale locale) { super(pattern, locale); } public RubyDateFormat(String pattern, DateFormatSymbols formatSymbols) { super(pattern, formatSymbols); } }
Version data entries
98 entries across 86 versions & 17 rubygems