- Add the Codota plugin to your IDE and get smart completions
private void myMethod () {SimpleDateFormat s =
String pattern;new SimpleDateFormat(pattern)
String template;Locale locale;new SimpleDateFormat(template, locale)
new SimpleDateFormat()
- Smart code suggestions by Codota
}
/** * Generate a new wing document element. * * @param context * (Required) The context this element is contained in. */ public WingDocument(WingContext context) throws WingException { super(context); // These are all required so we just create them now. this.meta = new Meta(context); this.body = new Body(context); this.options = new Options(context); }