- Add the Codota plugin to your IDE and get smart completions
private void myMethod () {Dictionary d =
new Hashtable()
Bundle bundle;bundle.getHeaders()
new Properties()
- Smart code suggestions by Codota
}
/** * Create a new filter to select commits after a given date/time. * * @param ts * the point in time to cut on, in milliseconds. * @return a new filter to select commits on or after <code>ts</code>. */ public static final RevFilter after(long ts) { return new After(ts); }
/** * Create a new filter to select commits after a given date/time. * * @param ts * the point in time to cut on, in milliseconds. * @return a new filter to select commits on or after <code>ts</code>. */ public static final RevFilter after(long ts) { return new After(ts); }
/** * Create a new filter to select commits after a given date/time. * * @param ts * the point in time to cut on, in milliseconds. * @return a new filter to select commits on or after <code>ts</code>. */ public static final RevFilter after(final long ts) { return new After(ts); }
/** * Create a new filter to select commits after a given date/time. * * @param ts * the point in time to cut on, in milliseconds. * @return a new filter to select commits on or after <code>ts</code>. */ public static final RevFilter after(long ts) { return new After(ts); }