repo
stringlengths
7
58
path
stringlengths
12
218
func_name
stringlengths
3
140
original_string
stringlengths
73
34.1k
language
stringclasses
1 value
code
stringlengths
73
34.1k
code_tokens
list
docstring
stringlengths
3
16k
docstring_tokens
list
sha
stringlengths
40
40
url
stringlengths
105
339
partition
stringclasses
1 value
nextreports/nextreports-engine
src/ro/nextreports/engine/util/DateUtil.java
DateUtil.addHours
public static Date addHours(Date d, int hours) { Calendar cal = Calendar.getInstance(); cal.setTime(d); cal.add(Calendar.HOUR_OF_DAY, hours); return cal.getTime(); }
java
public static Date addHours(Date d, int hours) { Calendar cal = Calendar.getInstance(); cal.setTime(d); cal.add(Calendar.HOUR_OF_DAY, hours); return cal.getTime(); }
[ "public", "static", "Date", "addHours", "(", "Date", "d", ",", "int", "hours", ")", "{", "Calendar", "cal", "=", "Calendar", ".", "getInstance", "(", ")", ";", "cal", ".", "setTime", "(", "d", ")", ";", "cal", ".", "add", "(", "Calendar", ".", "HOU...
Add hours to a date @param d date @param hours hours @return new date
[ "Add", "hours", "to", "a", "date" ]
a847575a9298b5fce63b88961190c5b83ddccc44
https://github.com/nextreports/nextreports-engine/blob/a847575a9298b5fce63b88961190c5b83ddccc44/src/ro/nextreports/engine/util/DateUtil.java#L457-L462
train
nextreports/nextreports-engine
src/ro/nextreports/engine/util/DateUtil.java
DateUtil.setHours
public static Date setHours(Date d, int hours) { Calendar cal = Calendar.getInstance(); cal.setTime(d); cal.set(Calendar.HOUR_OF_DAY, hours); return cal.getTime(); }
java
public static Date setHours(Date d, int hours) { Calendar cal = Calendar.getInstance(); cal.setTime(d); cal.set(Calendar.HOUR_OF_DAY, hours); return cal.getTime(); }
[ "public", "static", "Date", "setHours", "(", "Date", "d", ",", "int", "hours", ")", "{", "Calendar", "cal", "=", "Calendar", ".", "getInstance", "(", ")", ";", "cal", ".", "setTime", "(", "d", ")", ";", "cal", ".", "set", "(", "Calendar", ".", "HOU...
Set hours to a date @param d date @param hours hours @return new date
[ "Set", "hours", "to", "a", "date" ]
a847575a9298b5fce63b88961190c5b83ddccc44
https://github.com/nextreports/nextreports-engine/blob/a847575a9298b5fce63b88961190c5b83ddccc44/src/ro/nextreports/engine/util/DateUtil.java#L470-L475
train
nextreports/nextreports-engine
src/ro/nextreports/engine/util/DateUtil.java
DateUtil.addDays
public static Date addDays(Date d, int days) { Calendar cal = Calendar.getInstance(); cal.setTime(d); cal.add(Calendar.DAY_OF_YEAR, days); return cal.getTime(); }
java
public static Date addDays(Date d, int days) { Calendar cal = Calendar.getInstance(); cal.setTime(d); cal.add(Calendar.DAY_OF_YEAR, days); return cal.getTime(); }
[ "public", "static", "Date", "addDays", "(", "Date", "d", ",", "int", "days", ")", "{", "Calendar", "cal", "=", "Calendar", ".", "getInstance", "(", ")", ";", "cal", ".", "setTime", "(", "d", ")", ";", "cal", ".", "add", "(", "Calendar", ".", "DAY_O...
Add days to a date @param d date @param days days @return new date
[ "Add", "days", "to", "a", "date" ]
a847575a9298b5fce63b88961190c5b83ddccc44
https://github.com/nextreports/nextreports-engine/blob/a847575a9298b5fce63b88961190c5b83ddccc44/src/ro/nextreports/engine/util/DateUtil.java#L483-L488
train
nextreports/nextreports-engine
src/ro/nextreports/engine/util/DateUtil.java
DateUtil.addWeeks
public static Date addWeeks(Date d, int weeks) { Calendar cal = Calendar.getInstance(); cal.setTime(d); cal.add(Calendar.WEEK_OF_YEAR, weeks); return cal.getTime(); }
java
public static Date addWeeks(Date d, int weeks) { Calendar cal = Calendar.getInstance(); cal.setTime(d); cal.add(Calendar.WEEK_OF_YEAR, weeks); return cal.getTime(); }
[ "public", "static", "Date", "addWeeks", "(", "Date", "d", ",", "int", "weeks", ")", "{", "Calendar", "cal", "=", "Calendar", ".", "getInstance", "(", ")", ";", "cal", ".", "setTime", "(", "d", ")", ";", "cal", ".", "add", "(", "Calendar", ".", "WEE...
Add weeks to a date @param d date @param weeks weeks @return new date
[ "Add", "weeks", "to", "a", "date" ]
a847575a9298b5fce63b88961190c5b83ddccc44
https://github.com/nextreports/nextreports-engine/blob/a847575a9298b5fce63b88961190c5b83ddccc44/src/ro/nextreports/engine/util/DateUtil.java#L496-L501
train
nextreports/nextreports-engine
src/ro/nextreports/engine/util/DateUtil.java
DateUtil.addMonths
public static Date addMonths(Date d, int months) { Calendar cal = Calendar.getInstance(); cal.setTime(d); cal.add(Calendar.MONTH, months); return cal.getTime(); }
java
public static Date addMonths(Date d, int months) { Calendar cal = Calendar.getInstance(); cal.setTime(d); cal.add(Calendar.MONTH, months); return cal.getTime(); }
[ "public", "static", "Date", "addMonths", "(", "Date", "d", ",", "int", "months", ")", "{", "Calendar", "cal", "=", "Calendar", ".", "getInstance", "(", ")", ";", "cal", ".", "setTime", "(", "d", ")", ";", "cal", ".", "add", "(", "Calendar", ".", "M...
Add months to a date @param d date @param months months @return new date
[ "Add", "months", "to", "a", "date" ]
a847575a9298b5fce63b88961190c5b83ddccc44
https://github.com/nextreports/nextreports-engine/blob/a847575a9298b5fce63b88961190c5b83ddccc44/src/ro/nextreports/engine/util/DateUtil.java#L509-L514
train
nextreports/nextreports-engine
src/ro/nextreports/engine/util/DateUtil.java
DateUtil.getLastDayOfMonth
public static int getLastDayOfMonth(Date date) { Calendar c = Calendar.getInstance(); c.setTime(date); return c.getActualMaximum(Calendar.DATE); }
java
public static int getLastDayOfMonth(Date date) { Calendar c = Calendar.getInstance(); c.setTime(date); return c.getActualMaximum(Calendar.DATE); }
[ "public", "static", "int", "getLastDayOfMonth", "(", "Date", "date", ")", "{", "Calendar", "c", "=", "Calendar", ".", "getInstance", "(", ")", ";", "c", ".", "setTime", "(", "date", ")", ";", "return", "c", ".", "getActualMaximum", "(", "Calendar", ".", ...
Get last day from a month @param date date @return last day from a month
[ "Get", "last", "day", "from", "a", "month" ]
a847575a9298b5fce63b88961190c5b83ddccc44
https://github.com/nextreports/nextreports-engine/blob/a847575a9298b5fce63b88961190c5b83ddccc44/src/ro/nextreports/engine/util/DateUtil.java#L521-L525
train
nextreports/nextreports-engine
src/ro/nextreports/engine/util/DateUtil.java
DateUtil.getFromTimestamp
public static Date getFromTimestamp(Timestamp timestamp) { if (timestamp == null) { return null; } return new Date(timestamp.getTime()); }
java
public static Date getFromTimestamp(Timestamp timestamp) { if (timestamp == null) { return null; } return new Date(timestamp.getTime()); }
[ "public", "static", "Date", "getFromTimestamp", "(", "Timestamp", "timestamp", ")", "{", "if", "(", "timestamp", "==", "null", ")", "{", "return", "null", ";", "}", "return", "new", "Date", "(", "timestamp", ".", "getTime", "(", ")", ")", ";", "}" ]
Get a date from a timestamp @param timestamp time stamp @return date from a timestamp
[ "Get", "a", "date", "from", "a", "timestamp" ]
a847575a9298b5fce63b88961190c5b83ddccc44
https://github.com/nextreports/nextreports-engine/blob/a847575a9298b5fce63b88961190c5b83ddccc44/src/ro/nextreports/engine/util/DateUtil.java#L532-L537
train
nextreports/nextreports-engine
src/ro/nextreports/engine/util/DateUtil.java
DateUtil.getFirstDayFromCurrentWeek
public static Date getFirstDayFromCurrentWeek(Date d) { Calendar cal = Calendar.getInstance(); cal.setTime(d); cal.set(Calendar.DAY_OF_WEEK, Calendar.MONDAY); cal.set(Calendar.HOUR_OF_DAY, 0); cal.set(Calendar.MINUTE, 0); cal.set(Calendar.SECOND, 0); cal.set(Calendar.MILLISECOND, 0); return cal.getTime(); }
java
public static Date getFirstDayFromCurrentWeek(Date d) { Calendar cal = Calendar.getInstance(); cal.setTime(d); cal.set(Calendar.DAY_OF_WEEK, Calendar.MONDAY); cal.set(Calendar.HOUR_OF_DAY, 0); cal.set(Calendar.MINUTE, 0); cal.set(Calendar.SECOND, 0); cal.set(Calendar.MILLISECOND, 0); return cal.getTime(); }
[ "public", "static", "Date", "getFirstDayFromCurrentWeek", "(", "Date", "d", ")", "{", "Calendar", "cal", "=", "Calendar", ".", "getInstance", "(", ")", ";", "cal", ".", "setTime", "(", "d", ")", ";", "cal", ".", "set", "(", "Calendar", ".", "DAY_OF_WEEK"...
Get first date from current week @param d date @return first date from current week
[ "Get", "first", "date", "from", "current", "week" ]
a847575a9298b5fce63b88961190c5b83ddccc44
https://github.com/nextreports/nextreports-engine/blob/a847575a9298b5fce63b88961190c5b83ddccc44/src/ro/nextreports/engine/util/DateUtil.java#L581-L590
train
nextreports/nextreports-engine
src/ro/nextreports/engine/util/DateUtil.java
DateUtil.getLastDayFromCurrentWeek
public static Date getLastDayFromCurrentWeek(Date d) { Calendar cal = Calendar.getInstance(); cal.setTime(d); // depends on Locale (if a week starts on Monday or on Sunday) if (cal.getFirstDayOfWeek() == Calendar.SUNDAY) { cal.add(Calendar.WEEK_OF_YEAR, 1); } cal.set(Calendar.DAY_OF_WEEK, Calendar.SUNDAY); cal.set(Calendar.HOUR_OF_DAY, 23); cal.set(Calendar.MINUTE, 59); cal.set(Calendar.SECOND, 59); cal.set(Calendar.MILLISECOND, 999); return cal.getTime(); }
java
public static Date getLastDayFromCurrentWeek(Date d) { Calendar cal = Calendar.getInstance(); cal.setTime(d); // depends on Locale (if a week starts on Monday or on Sunday) if (cal.getFirstDayOfWeek() == Calendar.SUNDAY) { cal.add(Calendar.WEEK_OF_YEAR, 1); } cal.set(Calendar.DAY_OF_WEEK, Calendar.SUNDAY); cal.set(Calendar.HOUR_OF_DAY, 23); cal.set(Calendar.MINUTE, 59); cal.set(Calendar.SECOND, 59); cal.set(Calendar.MILLISECOND, 999); return cal.getTime(); }
[ "public", "static", "Date", "getLastDayFromCurrentWeek", "(", "Date", "d", ")", "{", "Calendar", "cal", "=", "Calendar", ".", "getInstance", "(", ")", ";", "cal", ".", "setTime", "(", "d", ")", ";", "// depends on Locale (if a week starts on Monday or on Sunday)", ...
Get last date from current week @param d date @return last date from current week
[ "Get", "last", "date", "from", "current", "week" ]
a847575a9298b5fce63b88961190c5b83ddccc44
https://github.com/nextreports/nextreports-engine/blob/a847575a9298b5fce63b88961190c5b83ddccc44/src/ro/nextreports/engine/util/DateUtil.java#L597-L610
train
nextreports/nextreports-engine
src/ro/nextreports/engine/util/DateUtil.java
DateUtil.getFirstDayFromLastMonth
public static Date getFirstDayFromLastMonth(Date d) { Calendar cal = Calendar.getInstance(); cal.setTime(d); cal.add(Calendar.MONTH, -1); cal.set(Calendar.DAY_OF_MONTH, 1); cal.set(Calendar.HOUR_OF_DAY, 0); cal.set(Calendar.MINUTE, 0); cal.set(Calendar.SECOND, 0); cal.set(Calendar.MILLISECOND, 0); return cal.getTime(); }
java
public static Date getFirstDayFromLastMonth(Date d) { Calendar cal = Calendar.getInstance(); cal.setTime(d); cal.add(Calendar.MONTH, -1); cal.set(Calendar.DAY_OF_MONTH, 1); cal.set(Calendar.HOUR_OF_DAY, 0); cal.set(Calendar.MINUTE, 0); cal.set(Calendar.SECOND, 0); cal.set(Calendar.MILLISECOND, 0); return cal.getTime(); }
[ "public", "static", "Date", "getFirstDayFromLastMonth", "(", "Date", "d", ")", "{", "Calendar", "cal", "=", "Calendar", ".", "getInstance", "(", ")", ";", "cal", ".", "setTime", "(", "d", ")", ";", "cal", ".", "add", "(", "Calendar", ".", "MONTH", ",",...
Get first date from last month @param d date @return first date from last month
[ "Get", "first", "date", "from", "last", "month" ]
a847575a9298b5fce63b88961190c5b83ddccc44
https://github.com/nextreports/nextreports-engine/blob/a847575a9298b5fce63b88961190c5b83ddccc44/src/ro/nextreports/engine/util/DateUtil.java#L617-L627
train
nextreports/nextreports-engine
src/ro/nextreports/engine/util/DateUtil.java
DateUtil.getLastDayFromLastMonth
public static Date getLastDayFromLastMonth(Date d) { Calendar cal = Calendar.getInstance(); cal.setTime(d); cal.add(Calendar.MONTH, -1); cal.set(Calendar.DAY_OF_MONTH, cal.getActualMaximum(Calendar.DATE)); cal.set(Calendar.HOUR_OF_DAY, 23); cal.set(Calendar.MINUTE, 59); cal.set(Calendar.SECOND, 59); cal.set(Calendar.MILLISECOND, 999); return cal.getTime(); }
java
public static Date getLastDayFromLastMonth(Date d) { Calendar cal = Calendar.getInstance(); cal.setTime(d); cal.add(Calendar.MONTH, -1); cal.set(Calendar.DAY_OF_MONTH, cal.getActualMaximum(Calendar.DATE)); cal.set(Calendar.HOUR_OF_DAY, 23); cal.set(Calendar.MINUTE, 59); cal.set(Calendar.SECOND, 59); cal.set(Calendar.MILLISECOND, 999); return cal.getTime(); }
[ "public", "static", "Date", "getLastDayFromLastMonth", "(", "Date", "d", ")", "{", "Calendar", "cal", "=", "Calendar", ".", "getInstance", "(", ")", ";", "cal", ".", "setTime", "(", "d", ")", ";", "cal", ".", "add", "(", "Calendar", ".", "MONTH", ",", ...
Get last date from last month @param d date @return last date from last month
[ "Get", "last", "date", "from", "last", "month" ]
a847575a9298b5fce63b88961190c5b83ddccc44
https://github.com/nextreports/nextreports-engine/blob/a847575a9298b5fce63b88961190c5b83ddccc44/src/ro/nextreports/engine/util/DateUtil.java#L634-L644
train
nextreports/nextreports-engine
src/ro/nextreports/engine/util/DateUtil.java
DateUtil.getFirstDayFromCurrentMonth
public static Date getFirstDayFromCurrentMonth(Date d) { Calendar cal = Calendar.getInstance(); cal.setTime(d); cal.set(Calendar.DAY_OF_MONTH, 1); cal.set(Calendar.HOUR_OF_DAY, 0); cal.set(Calendar.MINUTE, 0); cal.set(Calendar.SECOND, 0); cal.set(Calendar.MILLISECOND, 0); return cal.getTime(); }
java
public static Date getFirstDayFromCurrentMonth(Date d) { Calendar cal = Calendar.getInstance(); cal.setTime(d); cal.set(Calendar.DAY_OF_MONTH, 1); cal.set(Calendar.HOUR_OF_DAY, 0); cal.set(Calendar.MINUTE, 0); cal.set(Calendar.SECOND, 0); cal.set(Calendar.MILLISECOND, 0); return cal.getTime(); }
[ "public", "static", "Date", "getFirstDayFromCurrentMonth", "(", "Date", "d", ")", "{", "Calendar", "cal", "=", "Calendar", ".", "getInstance", "(", ")", ";", "cal", ".", "setTime", "(", "d", ")", ";", "cal", ".", "set", "(", "Calendar", ".", "DAY_OF_MONT...
Get first date from current month @param d date @return first date from current month
[ "Get", "first", "date", "from", "current", "month" ]
a847575a9298b5fce63b88961190c5b83ddccc44
https://github.com/nextreports/nextreports-engine/blob/a847575a9298b5fce63b88961190c5b83ddccc44/src/ro/nextreports/engine/util/DateUtil.java#L651-L660
train
nextreports/nextreports-engine
src/ro/nextreports/engine/util/DateUtil.java
DateUtil.getLastDayFromCurrentMonth
public static Date getLastDayFromCurrentMonth(Date d) { Calendar cal = Calendar.getInstance(); cal.setTime(d); cal.set(Calendar.DAY_OF_MONTH, cal.getActualMaximum(Calendar.DATE)); cal.set(Calendar.HOUR_OF_DAY, 23); cal.set(Calendar.MINUTE, 59); cal.set(Calendar.SECOND, 59); cal.set(Calendar.MILLISECOND, 999); return cal.getTime(); }
java
public static Date getLastDayFromCurrentMonth(Date d) { Calendar cal = Calendar.getInstance(); cal.setTime(d); cal.set(Calendar.DAY_OF_MONTH, cal.getActualMaximum(Calendar.DATE)); cal.set(Calendar.HOUR_OF_DAY, 23); cal.set(Calendar.MINUTE, 59); cal.set(Calendar.SECOND, 59); cal.set(Calendar.MILLISECOND, 999); return cal.getTime(); }
[ "public", "static", "Date", "getLastDayFromCurrentMonth", "(", "Date", "d", ")", "{", "Calendar", "cal", "=", "Calendar", ".", "getInstance", "(", ")", ";", "cal", ".", "setTime", "(", "d", ")", ";", "cal", ".", "set", "(", "Calendar", ".", "DAY_OF_MONTH...
Get last date from current month @param d date @return last date from current month
[ "Get", "last", "date", "from", "current", "month" ]
a847575a9298b5fce63b88961190c5b83ddccc44
https://github.com/nextreports/nextreports-engine/blob/a847575a9298b5fce63b88961190c5b83ddccc44/src/ro/nextreports/engine/util/DateUtil.java#L667-L676
train
nextreports/nextreports-engine
src/ro/nextreports/engine/util/DateUtil.java
DateUtil.getFirstDayFromLastYear
public static Date getFirstDayFromLastYear(Date d) { Calendar cal = Calendar.getInstance(); cal.setTime(d); cal.add(Calendar.YEAR, -1); cal.set(Calendar.MONTH, Calendar.JANUARY); cal.set(Calendar.DAY_OF_MONTH, 1); cal.set(Calendar.HOUR_OF_DAY, 0); cal.set(Calendar.MINUTE, 0); cal.set(Calendar.SECOND, 0); cal.set(Calendar.MILLISECOND, 0); return cal.getTime(); }
java
public static Date getFirstDayFromLastYear(Date d) { Calendar cal = Calendar.getInstance(); cal.setTime(d); cal.add(Calendar.YEAR, -1); cal.set(Calendar.MONTH, Calendar.JANUARY); cal.set(Calendar.DAY_OF_MONTH, 1); cal.set(Calendar.HOUR_OF_DAY, 0); cal.set(Calendar.MINUTE, 0); cal.set(Calendar.SECOND, 0); cal.set(Calendar.MILLISECOND, 0); return cal.getTime(); }
[ "public", "static", "Date", "getFirstDayFromLastYear", "(", "Date", "d", ")", "{", "Calendar", "cal", "=", "Calendar", ".", "getInstance", "(", ")", ";", "cal", ".", "setTime", "(", "d", ")", ";", "cal", ".", "add", "(", "Calendar", ".", "YEAR", ",", ...
Get first date from last year @param d date @return first date from last year
[ "Get", "first", "date", "from", "last", "year" ]
a847575a9298b5fce63b88961190c5b83ddccc44
https://github.com/nextreports/nextreports-engine/blob/a847575a9298b5fce63b88961190c5b83ddccc44/src/ro/nextreports/engine/util/DateUtil.java#L683-L694
train
nextreports/nextreports-engine
src/ro/nextreports/engine/util/DateUtil.java
DateUtil.getFirstDayFromCurrentYear
public static Date getFirstDayFromCurrentYear(Date d) { Calendar cal = Calendar.getInstance(); cal.setTime(d); cal.set(Calendar.MONTH, Calendar.JANUARY); cal.set(Calendar.DAY_OF_MONTH, 1); cal.set(Calendar.HOUR_OF_DAY, 0); cal.set(Calendar.MINUTE, 0); cal.set(Calendar.SECOND, 0); cal.set(Calendar.MILLISECOND, 0); return cal.getTime(); }
java
public static Date getFirstDayFromCurrentYear(Date d) { Calendar cal = Calendar.getInstance(); cal.setTime(d); cal.set(Calendar.MONTH, Calendar.JANUARY); cal.set(Calendar.DAY_OF_MONTH, 1); cal.set(Calendar.HOUR_OF_DAY, 0); cal.set(Calendar.MINUTE, 0); cal.set(Calendar.SECOND, 0); cal.set(Calendar.MILLISECOND, 0); return cal.getTime(); }
[ "public", "static", "Date", "getFirstDayFromCurrentYear", "(", "Date", "d", ")", "{", "Calendar", "cal", "=", "Calendar", ".", "getInstance", "(", ")", ";", "cal", ".", "setTime", "(", "d", ")", ";", "cal", ".", "set", "(", "Calendar", ".", "MONTH", ",...
Get first date from current year @param d date @return first date from current year
[ "Get", "first", "date", "from", "current", "year" ]
a847575a9298b5fce63b88961190c5b83ddccc44
https://github.com/nextreports/nextreports-engine/blob/a847575a9298b5fce63b88961190c5b83ddccc44/src/ro/nextreports/engine/util/DateUtil.java#L719-L729
train
nextreports/nextreports-engine
src/ro/nextreports/engine/util/DateUtil.java
DateUtil.getLastDayFromCurrentYear
public static Date getLastDayFromCurrentYear(Date d) { Calendar cal = Calendar.getInstance(); cal.setTime(d); cal.set(Calendar.MONTH, Calendar.DECEMBER); cal.set(Calendar.DAY_OF_MONTH, 31); cal.set(Calendar.HOUR_OF_DAY, 23); cal.set(Calendar.MINUTE, 59); cal.set(Calendar.SECOND, 59); cal.set(Calendar.MILLISECOND, 999); return cal.getTime(); }
java
public static Date getLastDayFromCurrentYear(Date d) { Calendar cal = Calendar.getInstance(); cal.setTime(d); cal.set(Calendar.MONTH, Calendar.DECEMBER); cal.set(Calendar.DAY_OF_MONTH, 31); cal.set(Calendar.HOUR_OF_DAY, 23); cal.set(Calendar.MINUTE, 59); cal.set(Calendar.SECOND, 59); cal.set(Calendar.MILLISECOND, 999); return cal.getTime(); }
[ "public", "static", "Date", "getLastDayFromCurrentYear", "(", "Date", "d", ")", "{", "Calendar", "cal", "=", "Calendar", ".", "getInstance", "(", ")", ";", "cal", ".", "setTime", "(", "d", ")", ";", "cal", ".", "set", "(", "Calendar", ".", "MONTH", ","...
Get last date from current year @param d date @return last date from current year
[ "Get", "last", "date", "from", "current", "year" ]
a847575a9298b5fce63b88961190c5b83ddccc44
https://github.com/nextreports/nextreports-engine/blob/a847575a9298b5fce63b88961190c5b83ddccc44/src/ro/nextreports/engine/util/DateUtil.java#L736-L746
train
nextreports/nextreports-engine
src/ro/nextreports/engine/util/DateUtil.java
DateUtil.getLastNDay
public static Date getLastNDay(Date d, int n, int unitType) { Calendar cal = Calendar.getInstance(); cal.setTime(d); cal.add(unitType, -n); cal.set(Calendar.HOUR_OF_DAY, 0); cal.set(Calendar.MINUTE, 0); cal.set(Calendar.SECOND, 0); cal.set(Calendar.MILLISECOND, 0); return cal.getTime(); }
java
public static Date getLastNDay(Date d, int n, int unitType) { Calendar cal = Calendar.getInstance(); cal.setTime(d); cal.add(unitType, -n); cal.set(Calendar.HOUR_OF_DAY, 0); cal.set(Calendar.MINUTE, 0); cal.set(Calendar.SECOND, 0); cal.set(Calendar.MILLISECOND, 0); return cal.getTime(); }
[ "public", "static", "Date", "getLastNDay", "(", "Date", "d", ",", "int", "n", ",", "int", "unitType", ")", "{", "Calendar", "cal", "=", "Calendar", ".", "getInstance", "(", ")", ";", "cal", ".", "setTime", "(", "d", ")", ";", "cal", ".", "add", "("...
Get date with n unitType before @param d date @param n number of units @param unitType unit type : one of Calendar.DAY_OF_YEAR, Calendar.WEEK_OF_YEAR, Calendar.MONTH, Calendar.YEAR; @return
[ "Get", "date", "with", "n", "unitType", "before" ]
a847575a9298b5fce63b88961190c5b83ddccc44
https://github.com/nextreports/nextreports-engine/blob/a847575a9298b5fce63b88961190c5b83ddccc44/src/ro/nextreports/engine/util/DateUtil.java#L755-L764
train
samskivert/samskivert
src/main/java/com/samskivert/swing/CollapsiblePanel.java
CollapsiblePanel.setTriggerContainer
public void setTriggerContainer (JComponent comp, JPanel content, boolean collapsed) { // these are our only two components. add(comp); add(_content = content); // When the content is shown, make sure it's scrolled visible _content.addComponentListener(new ComponentAdapter() { @Override public void componentShown (ComponentEvent event) { // we can't do it just yet, the content doesn't know its size EventQueue.invokeLater(new Runnable() { public void run () { // The content is offset a bit from the trigger // but we want the trigger to show up, so we add // in point 0,0 Rectangle r = _content.getBounds(); r.add(0, 0); scrollRectToVisible(r); } }); } }); // and start us out not showing setCollapsed(collapsed); }
java
public void setTriggerContainer (JComponent comp, JPanel content, boolean collapsed) { // these are our only two components. add(comp); add(_content = content); // When the content is shown, make sure it's scrolled visible _content.addComponentListener(new ComponentAdapter() { @Override public void componentShown (ComponentEvent event) { // we can't do it just yet, the content doesn't know its size EventQueue.invokeLater(new Runnable() { public void run () { // The content is offset a bit from the trigger // but we want the trigger to show up, so we add // in point 0,0 Rectangle r = _content.getBounds(); r.add(0, 0); scrollRectToVisible(r); } }); } }); // and start us out not showing setCollapsed(collapsed); }
[ "public", "void", "setTriggerContainer", "(", "JComponent", "comp", ",", "JPanel", "content", ",", "boolean", "collapsed", ")", "{", "// these are our only two components.", "add", "(", "comp", ")", ";", "add", "(", "_content", "=", "content", ")", ";", "// When...
Set a component which contains the trigger button.
[ "Set", "a", "component", "which", "contains", "the", "trigger", "button", "." ]
a64d9ef42b69819bdb2c66bddac6a64caef928b6
https://github.com/samskivert/samskivert/blob/a64d9ef42b69819bdb2c66bddac6a64caef928b6/src/main/java/com/samskivert/swing/CollapsiblePanel.java#L93-L119
train
samskivert/samskivert
src/main/java/com/samskivert/swing/CollapsiblePanel.java
CollapsiblePanel.setTrigger
public void setTrigger (AbstractButton trigger, Icon collapsed, Icon uncollapsed) { _trigger = trigger; _trigger.setHorizontalAlignment(SwingConstants.LEFT); _trigger.setHorizontalTextPosition(SwingConstants.RIGHT); _downIcon = collapsed; _upIcon = uncollapsed; _trigger.addActionListener(this); }
java
public void setTrigger (AbstractButton trigger, Icon collapsed, Icon uncollapsed) { _trigger = trigger; _trigger.setHorizontalAlignment(SwingConstants.LEFT); _trigger.setHorizontalTextPosition(SwingConstants.RIGHT); _downIcon = collapsed; _upIcon = uncollapsed; _trigger.addActionListener(this); }
[ "public", "void", "setTrigger", "(", "AbstractButton", "trigger", ",", "Icon", "collapsed", ",", "Icon", "uncollapsed", ")", "{", "_trigger", "=", "trigger", ";", "_trigger", ".", "setHorizontalAlignment", "(", "SwingConstants", ".", "LEFT", ")", ";", "_trigger"...
Set the trigger button.
[ "Set", "the", "trigger", "button", "." ]
a64d9ef42b69819bdb2c66bddac6a64caef928b6
https://github.com/samskivert/samskivert/blob/a64d9ef42b69819bdb2c66bddac6a64caef928b6/src/main/java/com/samskivert/swing/CollapsiblePanel.java#L124-L133
train
samskivert/samskivert
src/main/java/com/samskivert/swing/CollapsiblePanel.java
CollapsiblePanel.setCollapsed
public void setCollapsed (boolean collapse) { if (collapse) { _content.setVisible(false); _trigger.setIcon(_downIcon); } else { _content.setVisible(true); _trigger.setIcon(_upIcon); } SwingUtil.refresh(this); }
java
public void setCollapsed (boolean collapse) { if (collapse) { _content.setVisible(false); _trigger.setIcon(_downIcon); } else { _content.setVisible(true); _trigger.setIcon(_upIcon); } SwingUtil.refresh(this); }
[ "public", "void", "setCollapsed", "(", "boolean", "collapse", ")", "{", "if", "(", "collapse", ")", "{", "_content", ".", "setVisible", "(", "false", ")", ";", "_trigger", ".", "setIcon", "(", "_downIcon", ")", ";", "}", "else", "{", "_content", ".", "...
Set the collapsion state.
[ "Set", "the", "collapsion", "state", "." ]
a64d9ef42b69819bdb2c66bddac6a64caef928b6
https://github.com/samskivert/samskivert/blob/a64d9ef42b69819bdb2c66bddac6a64caef928b6/src/main/java/com/samskivert/swing/CollapsiblePanel.java#L172-L183
train
samskivert/samskivert
src/main/java/com/samskivert/util/CompactIntListUtil.java
CompactIntListUtil.add
public static int[] add (int[] list, int value) { // make sure we've got a list to work with if (list == null) { return new int[] { value }; } // check to see if the element is in the list int llength = list.length; for (int i = 0; i < llength; i++) { if (list[i] == value) { return list; } } // expand the list and append our element int[] nlist = new int[llength+1]; System.arraycopy(list, 0, nlist, 0, llength); nlist[llength] = value; return nlist; }
java
public static int[] add (int[] list, int value) { // make sure we've got a list to work with if (list == null) { return new int[] { value }; } // check to see if the element is in the list int llength = list.length; for (int i = 0; i < llength; i++) { if (list[i] == value) { return list; } } // expand the list and append our element int[] nlist = new int[llength+1]; System.arraycopy(list, 0, nlist, 0, llength); nlist[llength] = value; return nlist; }
[ "public", "static", "int", "[", "]", "add", "(", "int", "[", "]", "list", ",", "int", "value", ")", "{", "// make sure we've got a list to work with", "if", "(", "list", "==", "null", ")", "{", "return", "new", "int", "[", "]", "{", "value", "}", ";", ...
Adds the specified value to the list iff it is not already in the list. @param list the list to which to add the value. Can be null. @param value the value to add. @return a reference to the list with value added (might not be the list you passed in due to expansion, or allocation).
[ "Adds", "the", "specified", "value", "to", "the", "list", "iff", "it", "is", "not", "already", "in", "the", "list", "." ]
a64d9ef42b69819bdb2c66bddac6a64caef928b6
https://github.com/samskivert/samskivert/blob/a64d9ef42b69819bdb2c66bddac6a64caef928b6/src/main/java/com/samskivert/util/CompactIntListUtil.java#L26-L47
train
samskivert/samskivert
src/main/java/com/samskivert/util/CompactIntListUtil.java
CompactIntListUtil.contains
public static boolean contains (int[] list, int value) { int llength = list.length; // no optimizing bastards for (int i = 0; i < llength; i++) { if (list[i] == value) { return true; } } return false; }
java
public static boolean contains (int[] list, int value) { int llength = list.length; // no optimizing bastards for (int i = 0; i < llength; i++) { if (list[i] == value) { return true; } } return false; }
[ "public", "static", "boolean", "contains", "(", "int", "[", "]", "list", ",", "int", "value", ")", "{", "int", "llength", "=", "list", ".", "length", ";", "// no optimizing bastards", "for", "(", "int", "i", "=", "0", ";", "i", "<", "llength", ";", "...
Looks for an element that is equal to the supplied value. @return true if a matching value was found, false otherwise.
[ "Looks", "for", "an", "element", "that", "is", "equal", "to", "the", "supplied", "value", "." ]
a64d9ef42b69819bdb2c66bddac6a64caef928b6
https://github.com/samskivert/samskivert/blob/a64d9ef42b69819bdb2c66bddac6a64caef928b6/src/main/java/com/samskivert/util/CompactIntListUtil.java#L54-L63
train
samskivert/samskivert
src/main/java/com/samskivert/util/CompactIntListUtil.java
CompactIntListUtil.remove
public static int[] remove (int[] list, int value) { // nothing to remove from an empty list if (list == null) { return null; } // search for the index of the element to be removed int llength = list.length; // no optimizing bastards for (int i = 0; i < llength; i++) { if (list[i] == value) { return removeAt(list, i); } } // if we didn't find it, we've nothing to do return list; }
java
public static int[] remove (int[] list, int value) { // nothing to remove from an empty list if (list == null) { return null; } // search for the index of the element to be removed int llength = list.length; // no optimizing bastards for (int i = 0; i < llength; i++) { if (list[i] == value) { return removeAt(list, i); } } // if we didn't find it, we've nothing to do return list; }
[ "public", "static", "int", "[", "]", "remove", "(", "int", "[", "]", "list", ",", "int", "value", ")", "{", "// nothing to remove from an empty list", "if", "(", "list", "==", "null", ")", "{", "return", "null", ";", "}", "// search for the index of the elemen...
Removes the first value that is equal to the supplied value. A new array will be created containing all other elements, except the located element, in the order they existed in the original list. @return the new array minus the found value, or the original array.
[ "Removes", "the", "first", "value", "that", "is", "equal", "to", "the", "supplied", "value", ".", "A", "new", "array", "will", "be", "created", "containing", "all", "other", "elements", "except", "the", "located", "element", "in", "the", "order", "they", "...
a64d9ef42b69819bdb2c66bddac6a64caef928b6
https://github.com/samskivert/samskivert/blob/a64d9ef42b69819bdb2c66bddac6a64caef928b6/src/main/java/com/samskivert/util/CompactIntListUtil.java#L90-L107
train
samskivert/samskivert
src/main/java/com/samskivert/util/CompactIntListUtil.java
CompactIntListUtil.removeAt
public static int[] removeAt (int[] list, int index) { // this will NPE if the bastards passed a null list, which is how // we'll let them know not to do that int nlength = list.length-1; // create a new array minus the removed element int[] nlist = new int[nlength]; System.arraycopy(list, 0, nlist, 0, index); System.arraycopy(list, index+1, nlist, index, nlength-index); return nlist; }
java
public static int[] removeAt (int[] list, int index) { // this will NPE if the bastards passed a null list, which is how // we'll let them know not to do that int nlength = list.length-1; // create a new array minus the removed element int[] nlist = new int[nlength]; System.arraycopy(list, 0, nlist, 0, index); System.arraycopy(list, index+1, nlist, index, nlength-index); return nlist; }
[ "public", "static", "int", "[", "]", "removeAt", "(", "int", "[", "]", "list", ",", "int", "index", ")", "{", "// this will NPE if the bastards passed a null list, which is how", "// we'll let them know not to do that", "int", "nlength", "=", "list", ".", "length", "-...
Removes the value at the specified index. A new array will be created containing all other elements, except the specified element, in the order they existed in the original list. @return the new array minus the specified element.
[ "Removes", "the", "value", "at", "the", "specified", "index", ".", "A", "new", "array", "will", "be", "created", "containing", "all", "other", "elements", "except", "the", "specified", "element", "in", "the", "order", "they", "existed", "in", "the", "origina...
a64d9ef42b69819bdb2c66bddac6a64caef928b6
https://github.com/samskivert/samskivert/blob/a64d9ef42b69819bdb2c66bddac6a64caef928b6/src/main/java/com/samskivert/util/CompactIntListUtil.java#L116-L128
train
samskivert/samskivert
src/main/java/com/samskivert/util/CountHashMap.java
CountHashMap.incrementCount
public int incrementCount (K key, int amount) { int[] val = get(key); if (val == null) { put(key, val = new int[1]); } val[0] += amount; return val[0]; /* Alternate implementation, less hashing on the first increment but more garbage created * every other time. (this whole method would be more optimal if this class were * rewritten) * int[] newVal = new int[] { amount }; int[] oldVal = put(key, newVal); if (oldVal != null) { newVal[0] += oldVal[0]; return oldVal[0]; } return 0; */ }
java
public int incrementCount (K key, int amount) { int[] val = get(key); if (val == null) { put(key, val = new int[1]); } val[0] += amount; return val[0]; /* Alternate implementation, less hashing on the first increment but more garbage created * every other time. (this whole method would be more optimal if this class were * rewritten) * int[] newVal = new int[] { amount }; int[] oldVal = put(key, newVal); if (oldVal != null) { newVal[0] += oldVal[0]; return oldVal[0]; } return 0; */ }
[ "public", "int", "incrementCount", "(", "K", "key", ",", "int", "amount", ")", "{", "int", "[", "]", "val", "=", "get", "(", "key", ")", ";", "if", "(", "val", "==", "null", ")", "{", "put", "(", "key", ",", "val", "=", "new", "int", "[", "1"...
Increment the value associated with the specified key, return the new value.
[ "Increment", "the", "value", "associated", "with", "the", "specified", "key", "return", "the", "new", "value", "." ]
a64d9ef42b69819bdb2c66bddac6a64caef928b6
https://github.com/samskivert/samskivert/blob/a64d9ef42b69819bdb2c66bddac6a64caef928b6/src/main/java/com/samskivert/util/CountHashMap.java#L42-L63
train
samskivert/samskivert
src/main/java/com/samskivert/util/CountHashMap.java
CountHashMap.setCount
public int setCount (K key, int count) { int[] val = get(key); if (val == null) { put(key, new int[] { count }); return 0; // old value } int oldVal = val[0]; val[0] = count; return oldVal; }
java
public int setCount (K key, int count) { int[] val = get(key); if (val == null) { put(key, new int[] { count }); return 0; // old value } int oldVal = val[0]; val[0] = count; return oldVal; }
[ "public", "int", "setCount", "(", "K", "key", ",", "int", "count", ")", "{", "int", "[", "]", "val", "=", "get", "(", "key", ")", ";", "if", "(", "val", "==", "null", ")", "{", "put", "(", "key", ",", "new", "int", "[", "]", "{", "count", "...
Set the count for the specified key. @return the old count.
[ "Set", "the", "count", "for", "the", "specified", "key", "." ]
a64d9ef42b69819bdb2c66bddac6a64caef928b6
https://github.com/samskivert/samskivert/blob/a64d9ef42b69819bdb2c66bddac6a64caef928b6/src/main/java/com/samskivert/util/CountHashMap.java#L79-L89
train
samskivert/samskivert
src/main/java/com/samskivert/util/CountHashMap.java
CountHashMap.compress
public void compress () { for (Iterator<int[]> itr = values().iterator(); itr.hasNext(); ) { if (itr.next()[0] == 0) { itr.remove(); } } }
java
public void compress () { for (Iterator<int[]> itr = values().iterator(); itr.hasNext(); ) { if (itr.next()[0] == 0) { itr.remove(); } } }
[ "public", "void", "compress", "(", ")", "{", "for", "(", "Iterator", "<", "int", "[", "]", ">", "itr", "=", "values", "(", ")", ".", "iterator", "(", ")", ";", "itr", ".", "hasNext", "(", ")", ";", ")", "{", "if", "(", "itr", ".", "next", "("...
Compress the count map- remove entries for which the value is 0.
[ "Compress", "the", "count", "map", "-", "remove", "entries", "for", "which", "the", "value", "is", "0", "." ]
a64d9ef42b69819bdb2c66bddac6a64caef928b6
https://github.com/samskivert/samskivert/blob/a64d9ef42b69819bdb2c66bddac6a64caef928b6/src/main/java/com/samskivert/util/CountHashMap.java#L106-L113
train
samskivert/samskivert
src/main/java/com/samskivert/swing/util/DialogUtil.java
DialogUtil.createDialog
public static JInternalDialog createDialog (JFrame frame, JPanel content) { return createDialog(frame, null, content); }
java
public static JInternalDialog createDialog (JFrame frame, JPanel content) { return createDialog(frame, null, content); }
[ "public", "static", "JInternalDialog", "createDialog", "(", "JFrame", "frame", ",", "JPanel", "content", ")", "{", "return", "createDialog", "(", "frame", ",", "null", ",", "content", ")", ";", "}" ]
Creates and shows an internal dialog with the specified panel.
[ "Creates", "and", "shows", "an", "internal", "dialog", "with", "the", "specified", "panel", "." ]
a64d9ef42b69819bdb2c66bddac6a64caef928b6
https://github.com/samskivert/samskivert/blob/a64d9ef42b69819bdb2c66bddac6a64caef928b6/src/main/java/com/samskivert/swing/util/DialogUtil.java#L25-L28
train
samskivert/samskivert
src/main/java/com/samskivert/swing/util/DialogUtil.java
DialogUtil.createDialog
public static JInternalDialog createDialog ( JFrame frame, String title, JPanel content) { JInternalDialog dialog = new JInternalDialog(frame); dialog.setOpaque(false); if (title != null) { dialog.setTitle(title); } setContent(dialog, content); SwingUtil.centerComponent(frame, dialog); dialog.showDialog(); return dialog; }
java
public static JInternalDialog createDialog ( JFrame frame, String title, JPanel content) { JInternalDialog dialog = new JInternalDialog(frame); dialog.setOpaque(false); if (title != null) { dialog.setTitle(title); } setContent(dialog, content); SwingUtil.centerComponent(frame, dialog); dialog.showDialog(); return dialog; }
[ "public", "static", "JInternalDialog", "createDialog", "(", "JFrame", "frame", ",", "String", "title", ",", "JPanel", "content", ")", "{", "JInternalDialog", "dialog", "=", "new", "JInternalDialog", "(", "frame", ")", ";", "dialog", ".", "setOpaque", "(", "fal...
Creates and shows an internal dialog with the specified title and panel.
[ "Creates", "and", "shows", "an", "internal", "dialog", "with", "the", "specified", "title", "and", "panel", "." ]
a64d9ef42b69819bdb2c66bddac6a64caef928b6
https://github.com/samskivert/samskivert/blob/a64d9ef42b69819bdb2c66bddac6a64caef928b6/src/main/java/com/samskivert/swing/util/DialogUtil.java#L34-L46
train
samskivert/samskivert
src/main/java/com/samskivert/swing/util/DialogUtil.java
DialogUtil.setContent
public static void setContent (JInternalDialog dialog, JPanel content) { Container holder = dialog.getContentPane(); holder.removeAll(); holder.add(content, BorderLayout.CENTER); dialog.pack(); }
java
public static void setContent (JInternalDialog dialog, JPanel content) { Container holder = dialog.getContentPane(); holder.removeAll(); holder.add(content, BorderLayout.CENTER); dialog.pack(); }
[ "public", "static", "void", "setContent", "(", "JInternalDialog", "dialog", ",", "JPanel", "content", ")", "{", "Container", "holder", "=", "dialog", ".", "getContentPane", "(", ")", ";", "holder", ".", "removeAll", "(", ")", ";", "holder", ".", "add", "("...
Sets the content panel of the supplied internal dialog.
[ "Sets", "the", "content", "panel", "of", "the", "supplied", "internal", "dialog", "." ]
a64d9ef42b69819bdb2c66bddac6a64caef928b6
https://github.com/samskivert/samskivert/blob/a64d9ef42b69819bdb2c66bddac6a64caef928b6/src/main/java/com/samskivert/swing/util/DialogUtil.java#L51-L57
train
samskivert/samskivert
src/main/java/com/samskivert/swing/util/DialogUtil.java
DialogUtil.getInternalDialog
public static JInternalDialog getInternalDialog (Component any) { Component parent = any; while (parent != null && !(parent instanceof JInternalDialog)) { parent = parent.getParent(); } return (JInternalDialog) parent; }
java
public static JInternalDialog getInternalDialog (Component any) { Component parent = any; while (parent != null && !(parent instanceof JInternalDialog)) { parent = parent.getParent(); } return (JInternalDialog) parent; }
[ "public", "static", "JInternalDialog", "getInternalDialog", "(", "Component", "any", ")", "{", "Component", "parent", "=", "any", ";", "while", "(", "parent", "!=", "null", "&&", "!", "(", "parent", "instanceof", "JInternalDialog", ")", ")", "{", "parent", "...
Returns the internal dialog that is a parent of the specified component.
[ "Returns", "the", "internal", "dialog", "that", "is", "a", "parent", "of", "the", "specified", "component", "." ]
a64d9ef42b69819bdb2c66bddac6a64caef928b6
https://github.com/samskivert/samskivert/blob/a64d9ef42b69819bdb2c66bddac6a64caef928b6/src/main/java/com/samskivert/swing/util/DialogUtil.java#L63-L71
train
samskivert/samskivert
src/main/java/com/samskivert/swing/util/DialogUtil.java
DialogUtil.invalidateDialog
public static void invalidateDialog (Component any) { JInternalDialog dialog = getInternalDialog(any); if (dialog == null) { return; } SwingUtil.applyToHierarchy(dialog, new SwingUtil.ComponentOp() { public void apply (Component comp) { comp.invalidate(); } }); dialog.setSize(dialog.getPreferredSize()); }
java
public static void invalidateDialog (Component any) { JInternalDialog dialog = getInternalDialog(any); if (dialog == null) { return; } SwingUtil.applyToHierarchy(dialog, new SwingUtil.ComponentOp() { public void apply (Component comp) { comp.invalidate(); } }); dialog.setSize(dialog.getPreferredSize()); }
[ "public", "static", "void", "invalidateDialog", "(", "Component", "any", ")", "{", "JInternalDialog", "dialog", "=", "getInternalDialog", "(", "any", ")", ";", "if", "(", "dialog", "==", "null", ")", "{", "return", ";", "}", "SwingUtil", ".", "applyToHierarc...
Invalidates and resizes the entire dialog given any component within the dialog in question.
[ "Invalidates", "and", "resizes", "the", "entire", "dialog", "given", "any", "component", "within", "the", "dialog", "in", "question", "." ]
a64d9ef42b69819bdb2c66bddac6a64caef928b6
https://github.com/samskivert/samskivert/blob/a64d9ef42b69819bdb2c66bddac6a64caef928b6/src/main/java/com/samskivert/swing/util/DialogUtil.java#L77-L91
train
samskivert/samskivert
src/main/java/com/samskivert/util/CountMap.java
CountMap.add
public int add (K key, int amount) { CountEntry<K> entry = _backing.get(key); if (entry == null) { _backing.put(key, new CountEntry<K>(key, amount)); return amount; } return (entry.count += amount); }
java
public int add (K key, int amount) { CountEntry<K> entry = _backing.get(key); if (entry == null) { _backing.put(key, new CountEntry<K>(key, amount)); return amount; } return (entry.count += amount); }
[ "public", "int", "add", "(", "K", "key", ",", "int", "amount", ")", "{", "CountEntry", "<", "K", ">", "entry", "=", "_backing", ".", "get", "(", "key", ")", ";", "if", "(", "entry", "==", "null", ")", "{", "_backing", ".", "put", "(", "key", ",...
Add the specified amount to the count for the specified key, return the new count. Adding 0 will ensure that a Map.Entry is created for the specified key.
[ "Add", "the", "specified", "amount", "to", "the", "count", "for", "the", "specified", "key", "return", "the", "new", "count", ".", "Adding", "0", "will", "ensure", "that", "a", "Map", ".", "Entry", "is", "created", "for", "the", "specified", "key", "." ]
a64d9ef42b69819bdb2c66bddac6a64caef928b6
https://github.com/samskivert/samskivert/blob/a64d9ef42b69819bdb2c66bddac6a64caef928b6/src/main/java/com/samskivert/util/CountMap.java#L63-L71
train
samskivert/samskivert
src/main/java/com/samskivert/util/CountMap.java
CountMap.getCount
public int getCount (K key) { CountEntry<K> entry = _backing.get(key); return (entry == null) ? 0 : entry.count; }
java
public int getCount (K key) { CountEntry<K> entry = _backing.get(key); return (entry == null) ? 0 : entry.count; }
[ "public", "int", "getCount", "(", "K", "key", ")", "{", "CountEntry", "<", "K", ">", "entry", "=", "_backing", ".", "get", "(", "key", ")", ";", "return", "(", "entry", "==", "null", ")", "?", "0", ":", "entry", ".", "count", ";", "}" ]
Get the count for the specified key. If the key is not present, 0 is returned.
[ "Get", "the", "count", "for", "the", "specified", "key", ".", "If", "the", "key", "is", "not", "present", "0", "is", "returned", "." ]
a64d9ef42b69819bdb2c66bddac6a64caef928b6
https://github.com/samskivert/samskivert/blob/a64d9ef42b69819bdb2c66bddac6a64caef928b6/src/main/java/com/samskivert/util/CountMap.java#L76-L80
train
samskivert/samskivert
src/main/java/com/samskivert/util/CountMap.java
CountMap.compress
public void compress () { for (Iterator<CountEntry<K>> it = _backing.values().iterator(); it.hasNext(); ) { if (it.next().count == 0) { it.remove(); } } }
java
public void compress () { for (Iterator<CountEntry<K>> it = _backing.values().iterator(); it.hasNext(); ) { if (it.next().count == 0) { it.remove(); } } }
[ "public", "void", "compress", "(", ")", "{", "for", "(", "Iterator", "<", "CountEntry", "<", "K", ">", ">", "it", "=", "_backing", ".", "values", "(", ")", ".", "iterator", "(", ")", ";", "it", ".", "hasNext", "(", ")", ";", ")", "{", "if", "("...
Remove any keys for which the count is currently 0.
[ "Remove", "any", "keys", "for", "which", "the", "count", "is", "currently", "0", "." ]
a64d9ef42b69819bdb2c66bddac6a64caef928b6
https://github.com/samskivert/samskivert/blob/a64d9ef42b69819bdb2c66bddac6a64caef928b6/src/main/java/com/samskivert/util/CountMap.java#L85-L92
train
samskivert/samskivert
src/main/java/com/samskivert/util/Randoms.java
Randoms.pickPluck
protected <T> T pickPluck (Iterable<? extends T> iterable, T ifEmpty, boolean remove) { if (iterable instanceof Collection) { // optimized path for Collection @SuppressWarnings("unchecked") Collection<? extends T> coll = (Collection<? extends T>)iterable; int size = coll.size(); if (size == 0) { return ifEmpty; } if (coll instanceof List) { // extra-special optimized path for Lists @SuppressWarnings("unchecked") List<? extends T> list = (List<? extends T>)coll; int idx = _r.nextInt(size); if (remove) { // ternary conditional causes warning here with javac 1.6, :( return list.remove(idx); } return list.get(idx); } // for other Collections, we must iterate Iterator<? extends T> it = coll.iterator(); for (int idx = _r.nextInt(size); idx > 0; idx--) { it.next(); } try { return it.next(); } finally { if (remove) { it.remove(); } } } if (!remove) { return pick(iterable.iterator(), ifEmpty); } // from here on out, we're doing a pluck with a complicated two-iterator solution Iterator<? extends T> it = iterable.iterator(); if (!it.hasNext()) { return ifEmpty; } Iterator<? extends T> lagIt = iterable.iterator(); T pick = it.next(); lagIt.next(); for (int count = 2, lag = 1; it.hasNext(); count++, lag++) { T next = it.next(); if (0 == _r.nextInt(count)) { pick = next; // catch up lagIt so that it has just returned 'pick' as well for ( ; lag > 0; lag--) { lagIt.next(); } } } lagIt.remove(); // remove 'pick' from the lagging iterator return pick; }
java
protected <T> T pickPluck (Iterable<? extends T> iterable, T ifEmpty, boolean remove) { if (iterable instanceof Collection) { // optimized path for Collection @SuppressWarnings("unchecked") Collection<? extends T> coll = (Collection<? extends T>)iterable; int size = coll.size(); if (size == 0) { return ifEmpty; } if (coll instanceof List) { // extra-special optimized path for Lists @SuppressWarnings("unchecked") List<? extends T> list = (List<? extends T>)coll; int idx = _r.nextInt(size); if (remove) { // ternary conditional causes warning here with javac 1.6, :( return list.remove(idx); } return list.get(idx); } // for other Collections, we must iterate Iterator<? extends T> it = coll.iterator(); for (int idx = _r.nextInt(size); idx > 0; idx--) { it.next(); } try { return it.next(); } finally { if (remove) { it.remove(); } } } if (!remove) { return pick(iterable.iterator(), ifEmpty); } // from here on out, we're doing a pluck with a complicated two-iterator solution Iterator<? extends T> it = iterable.iterator(); if (!it.hasNext()) { return ifEmpty; } Iterator<? extends T> lagIt = iterable.iterator(); T pick = it.next(); lagIt.next(); for (int count = 2, lag = 1; it.hasNext(); count++, lag++) { T next = it.next(); if (0 == _r.nextInt(count)) { pick = next; // catch up lagIt so that it has just returned 'pick' as well for ( ; lag > 0; lag--) { lagIt.next(); } } } lagIt.remove(); // remove 'pick' from the lagging iterator return pick; }
[ "protected", "<", "T", ">", "T", "pickPluck", "(", "Iterable", "<", "?", "extends", "T", ">", "iterable", ",", "T", "ifEmpty", ",", "boolean", "remove", ")", "{", "if", "(", "iterable", "instanceof", "Collection", ")", "{", "// optimized path for Collection"...
Shared code for pick and pluck.
[ "Shared", "code", "for", "pick", "and", "pluck", "." ]
a64d9ef42b69819bdb2c66bddac6a64caef928b6
https://github.com/samskivert/samskivert/blob/a64d9ef42b69819bdb2c66bddac6a64caef928b6/src/main/java/com/samskivert/util/Randoms.java#L305-L363
train
samskivert/samskivert
src/main/java/com/samskivert/util/Invoker.java
Invoker.postUnit
public void postUnit (Unit unit) { if (shutdownRequested()) { throw new IllegalStateException("Cannot post units to shutdown invoker."); } // note the time unit.queueStamp = System.currentTimeMillis(); // and append it to the queue _queue.append(unit); }
java
public void postUnit (Unit unit) { if (shutdownRequested()) { throw new IllegalStateException("Cannot post units to shutdown invoker."); } // note the time unit.queueStamp = System.currentTimeMillis(); // and append it to the queue _queue.append(unit); }
[ "public", "void", "postUnit", "(", "Unit", "unit", ")", "{", "if", "(", "shutdownRequested", "(", ")", ")", "{", "throw", "new", "IllegalStateException", "(", "\"Cannot post units to shutdown invoker.\"", ")", ";", "}", "// note the time", "unit", ".", "queueStamp...
Posts a unit to this invoker for subsequent invocation on the invoker's thread.
[ "Posts", "a", "unit", "to", "this", "invoker", "for", "subsequent", "invocation", "on", "the", "invoker", "s", "thread", "." ]
a64d9ef42b69819bdb2c66bddac6a64caef928b6
https://github.com/samskivert/samskivert/blob/a64d9ef42b69819bdb2c66bddac6a64caef928b6/src/main/java/com/samskivert/util/Invoker.java#L143-L152
train
samskivert/samskivert
src/main/java/com/samskivert/util/Invoker.java
Invoker.shutdown
@Override public void shutdown () { _shutdownRequested = true; _queue.append(new Unit() { @Override public boolean invoke () { _running = false; return false; } }); }
java
@Override public void shutdown () { _shutdownRequested = true; _queue.append(new Unit() { @Override public boolean invoke () { _running = false; return false; } }); }
[ "@", "Override", "public", "void", "shutdown", "(", ")", "{", "_shutdownRequested", "=", "true", ";", "_queue", ".", "append", "(", "new", "Unit", "(", ")", "{", "@", "Override", "public", "boolean", "invoke", "(", ")", "{", "_running", "=", "false", "...
Shuts down the invoker thread by queueing up a unit that will cause the thread to exit after all currently queued units are processed.
[ "Shuts", "down", "the", "invoker", "thread", "by", "queueing", "up", "a", "unit", "that", "will", "cause", "the", "thread", "to", "exit", "after", "all", "currently", "queued", "units", "are", "processed", "." ]
a64d9ef42b69819bdb2c66bddac6a64caef928b6
https://github.com/samskivert/samskivert/blob/a64d9ef42b69819bdb2c66bddac6a64caef928b6/src/main/java/com/samskivert/util/Invoker.java#L225-L235
train
samskivert/samskivert
src/main/java/com/samskivert/util/Invoker.java
Invoker.didInvokeUnit
protected void didInvokeUnit (Unit unit, long start) { // track some performance metrics if (PERF_TRACK) { long duration = System.currentTimeMillis() - start; Object key = unit.getClass(); recordMetrics(key, duration); // report long runners long thresh = unit.getLongThreshold(); if (thresh == 0) { thresh = _longThreshold; } if (duration > thresh) { StringBuilder msg = new StringBuilder(); msg.append((duration >= 10*thresh) ? "Really long" : "Long"); msg.append(" invoker unit [unit=").append(unit); msg.append(" (").append(key).append("), time=").append(duration).append("ms"); if (unit.getDetail() != null) { msg.append(", detail=").append(unit.getDetail()); } log.warning(msg.append("].").toString()); } } }
java
protected void didInvokeUnit (Unit unit, long start) { // track some performance metrics if (PERF_TRACK) { long duration = System.currentTimeMillis() - start; Object key = unit.getClass(); recordMetrics(key, duration); // report long runners long thresh = unit.getLongThreshold(); if (thresh == 0) { thresh = _longThreshold; } if (duration > thresh) { StringBuilder msg = new StringBuilder(); msg.append((duration >= 10*thresh) ? "Really long" : "Long"); msg.append(" invoker unit [unit=").append(unit); msg.append(" (").append(key).append("), time=").append(duration).append("ms"); if (unit.getDetail() != null) { msg.append(", detail=").append(unit.getDetail()); } log.warning(msg.append("].").toString()); } } }
[ "protected", "void", "didInvokeUnit", "(", "Unit", "unit", ",", "long", "start", ")", "{", "// track some performance metrics", "if", "(", "PERF_TRACK", ")", "{", "long", "duration", "=", "System", ".", "currentTimeMillis", "(", ")", "-", "start", ";", "Object...
Called before we process an invoker unit. @param unit the unit about to be invoked. @param start a timestamp recorded immediately before invocation if {@link #PERF_TRACK} is enabled, 0L otherwise.
[ "Called", "before", "we", "process", "an", "invoker", "unit", "." ]
a64d9ef42b69819bdb2c66bddac6a64caef928b6
https://github.com/samskivert/samskivert/blob/a64d9ef42b69819bdb2c66bddac6a64caef928b6/src/main/java/com/samskivert/util/Invoker.java#L276-L300
train
samskivert/samskivert
src/main/java/com/samskivert/util/ComparableTuple.java
ComparableTuple.compareTo
public int compareTo (ComparableTuple<L, R> other) { int rv = ObjectUtil.compareTo(left, other.left); return (rv != 0) ? rv : ObjectUtil.compareTo(right, other.right); }
java
public int compareTo (ComparableTuple<L, R> other) { int rv = ObjectUtil.compareTo(left, other.left); return (rv != 0) ? rv : ObjectUtil.compareTo(right, other.right); }
[ "public", "int", "compareTo", "(", "ComparableTuple", "<", "L", ",", "R", ">", "other", ")", "{", "int", "rv", "=", "ObjectUtil", ".", "compareTo", "(", "left", ",", "other", ".", "left", ")", ";", "return", "(", "rv", "!=", "0", ")", "?", "rv", ...
from interface Comparable
[ "from", "interface", "Comparable" ]
a64d9ef42b69819bdb2c66bddac6a64caef928b6
https://github.com/samskivert/samskivert/blob/a64d9ef42b69819bdb2c66bddac6a64caef928b6/src/main/java/com/samskivert/util/ComparableTuple.java#L24-L28
train
samskivert/samskivert
src/main/java/com/samskivert/xml/SimpleParser.java
SimpleParser.parseStream
public void parseStream (InputStream stream) throws IOException { try { // read the XML input stream and construct the scene object _chars = new StringBuilder(); XMLUtil.parse(this, stream); } catch (ParserConfigurationException pce) { throw (IOException) new IOException().initCause(pce); } catch (SAXException saxe) { throw (IOException) new IOException().initCause(saxe); } }
java
public void parseStream (InputStream stream) throws IOException { try { // read the XML input stream and construct the scene object _chars = new StringBuilder(); XMLUtil.parse(this, stream); } catch (ParserConfigurationException pce) { throw (IOException) new IOException().initCause(pce); } catch (SAXException saxe) { throw (IOException) new IOException().initCause(saxe); } }
[ "public", "void", "parseStream", "(", "InputStream", "stream", ")", "throws", "IOException", "{", "try", "{", "// read the XML input stream and construct the scene object", "_chars", "=", "new", "StringBuilder", "(", ")", ";", "XMLUtil", ".", "parse", "(", "this", "...
Parse the given input stream. @param stream the input stream from which the XML source to be parsed can be loaded. @exception IOException thrown if an error occurs while parsing the stream.
[ "Parse", "the", "given", "input", "stream", "." ]
a64d9ef42b69819bdb2c66bddac6a64caef928b6
https://github.com/samskivert/samskivert/blob/a64d9ef42b69819bdb2c66bddac6a64caef928b6/src/main/java/com/samskivert/xml/SimpleParser.java#L59-L73
train
samskivert/samskivert
src/main/java/com/samskivert/xml/SimpleParser.java
SimpleParser.getInputStream
protected InputStream getInputStream (String path) throws IOException { FileInputStream fis = new FileInputStream(path); return new BufferedInputStream(fis); }
java
protected InputStream getInputStream (String path) throws IOException { FileInputStream fis = new FileInputStream(path); return new BufferedInputStream(fis); }
[ "protected", "InputStream", "getInputStream", "(", "String", "path", ")", "throws", "IOException", "{", "FileInputStream", "fis", "=", "new", "FileInputStream", "(", "path", ")", ";", "return", "new", "BufferedInputStream", "(", "fis", ")", ";", "}" ]
Returns an input stream to read data from the given file name.
[ "Returns", "an", "input", "stream", "to", "read", "data", "from", "the", "given", "file", "name", "." ]
a64d9ef42b69819bdb2c66bddac6a64caef928b6
https://github.com/samskivert/samskivert/blob/a64d9ef42b69819bdb2c66bddac6a64caef928b6/src/main/java/com/samskivert/xml/SimpleParser.java#L91-L96
train
samskivert/samskivert
src/main/java/com/samskivert/xml/SimpleParser.java
SimpleParser.parseInt
protected int parseInt (String val) { try { return (val == null) ? -1 : Integer.parseInt(val); } catch (NumberFormatException nfe) { log.warning("Malformed integer value", "val", val); return -1; } }
java
protected int parseInt (String val) { try { return (val == null) ? -1 : Integer.parseInt(val); } catch (NumberFormatException nfe) { log.warning("Malformed integer value", "val", val); return -1; } }
[ "protected", "int", "parseInt", "(", "String", "val", ")", "{", "try", "{", "return", "(", "val", "==", "null", ")", "?", "-", "1", ":", "Integer", ".", "parseInt", "(", "val", ")", ";", "}", "catch", "(", "NumberFormatException", "nfe", ")", "{", ...
Parse the given string as an integer and return the integer value, or -1 if the string is malformed.
[ "Parse", "the", "given", "string", "as", "an", "integer", "and", "return", "the", "integer", "value", "or", "-", "1", "if", "the", "string", "is", "malformed", "." ]
a64d9ef42b69819bdb2c66bddac6a64caef928b6
https://github.com/samskivert/samskivert/blob/a64d9ef42b69819bdb2c66bddac6a64caef928b6/src/main/java/com/samskivert/xml/SimpleParser.java#L102-L110
train
samskivert/samskivert
src/main/java/com/samskivert/util/StringUtil.java
StringUtil.truncate
public static String truncate (String s, int maxLength, String append) { if ((s == null) || (s.length() <= maxLength)) { return s; } else { return s.substring(0, maxLength - append.length()) + append; } }
java
public static String truncate (String s, int maxLength, String append) { if ((s == null) || (s.length() <= maxLength)) { return s; } else { return s.substring(0, maxLength - append.length()) + append; } }
[ "public", "static", "String", "truncate", "(", "String", "s", ",", "int", "maxLength", ",", "String", "append", ")", "{", "if", "(", "(", "s", "==", "null", ")", "||", "(", "s", ".", "length", "(", ")", "<=", "maxLength", ")", ")", "{", "return", ...
Truncate the specified String if it is longer than maxLength. The string will be truncated at a position such that it is maxLength chars long after the addition of the 'append' String. @param append a String to add to the truncated String only after truncation.
[ "Truncate", "the", "specified", "String", "if", "it", "is", "longer", "than", "maxLength", ".", "The", "string", "will", "be", "truncated", "at", "a", "position", "such", "that", "it", "is", "maxLength", "chars", "long", "after", "the", "addition", "of", "...
a64d9ef42b69819bdb2c66bddac6a64caef928b6
https://github.com/samskivert/samskivert/blob/a64d9ef42b69819bdb2c66bddac6a64caef928b6/src/main/java/com/samskivert/util/StringUtil.java#L125-L132
train
samskivert/samskivert
src/main/java/com/samskivert/util/StringUtil.java
StringUtil.capitalize
public static String capitalize (String s) { if (isBlank(s)) { return s; } char c = s.charAt(0); if (Character.isUpperCase(c)) { return s; } else { return String.valueOf(Character.toUpperCase(c)) + s.substring(1); } }
java
public static String capitalize (String s) { if (isBlank(s)) { return s; } char c = s.charAt(0); if (Character.isUpperCase(c)) { return s; } else { return String.valueOf(Character.toUpperCase(c)) + s.substring(1); } }
[ "public", "static", "String", "capitalize", "(", "String", "s", ")", "{", "if", "(", "isBlank", "(", "s", ")", ")", "{", "return", "s", ";", "}", "char", "c", "=", "s", ".", "charAt", "(", "0", ")", ";", "if", "(", "Character", ".", "isUpperCase"...
Returns a version of the supplied string with the first letter capitalized.
[ "Returns", "a", "version", "of", "the", "supplied", "string", "with", "the", "first", "letter", "capitalized", "." ]
a64d9ef42b69819bdb2c66bddac6a64caef928b6
https://github.com/samskivert/samskivert/blob/a64d9ef42b69819bdb2c66bddac6a64caef928b6/src/main/java/com/samskivert/util/StringUtil.java#L137-L148
train
samskivert/samskivert
src/main/java/com/samskivert/util/StringUtil.java
StringUtil.toUSLowerCase
public static String toUSLowerCase (String s) { return isBlank(s) ? s : s.toLowerCase(Locale.US); }
java
public static String toUSLowerCase (String s) { return isBlank(s) ? s : s.toLowerCase(Locale.US); }
[ "public", "static", "String", "toUSLowerCase", "(", "String", "s", ")", "{", "return", "isBlank", "(", "s", ")", "?", "s", ":", "s", ".", "toLowerCase", "(", "Locale", ".", "US", ")", ";", "}" ]
Returns a US locale lower case string. Useful when manipulating filenames and resource keys which would not have locale specific characters.
[ "Returns", "a", "US", "locale", "lower", "case", "string", ".", "Useful", "when", "manipulating", "filenames", "and", "resource", "keys", "which", "would", "not", "have", "locale", "specific", "characters", "." ]
a64d9ef42b69819bdb2c66bddac6a64caef928b6
https://github.com/samskivert/samskivert/blob/a64d9ef42b69819bdb2c66bddac6a64caef928b6/src/main/java/com/samskivert/util/StringUtil.java#L154-L157
train
samskivert/samskivert
src/main/java/com/samskivert/util/StringUtil.java
StringUtil.toUSUpperCase
public static String toUSUpperCase (String s) { return isBlank(s) ? s : s.toUpperCase(Locale.US); }
java
public static String toUSUpperCase (String s) { return isBlank(s) ? s : s.toUpperCase(Locale.US); }
[ "public", "static", "String", "toUSUpperCase", "(", "String", "s", ")", "{", "return", "isBlank", "(", "s", ")", "?", "s", ":", "s", ".", "toUpperCase", "(", "Locale", ".", "US", ")", ";", "}" ]
Returns a US locale upper case string. Useful when manipulating filenames and resource keys which would not have locale specific characters.
[ "Returns", "a", "US", "locale", "upper", "case", "string", ".", "Useful", "when", "manipulating", "filenames", "and", "resource", "keys", "which", "would", "not", "have", "locale", "specific", "characters", "." ]
a64d9ef42b69819bdb2c66bddac6a64caef928b6
https://github.com/samskivert/samskivert/blob/a64d9ef42b69819bdb2c66bddac6a64caef928b6/src/main/java/com/samskivert/util/StringUtil.java#L163-L166
train
samskivert/samskivert
src/main/java/com/samskivert/util/StringUtil.java
StringUtil.sanitize
public static String sanitize (String source, CharacterValidator validator) { if (source == null) { return null; } int nn = source.length(); StringBuilder buf = new StringBuilder(nn); for (int ii=0; ii < nn; ii++) { char c = source.charAt(ii); if (validator.isValid(c)) { buf.append(c); } } return buf.toString(); }
java
public static String sanitize (String source, CharacterValidator validator) { if (source == null) { return null; } int nn = source.length(); StringBuilder buf = new StringBuilder(nn); for (int ii=0; ii < nn; ii++) { char c = source.charAt(ii); if (validator.isValid(c)) { buf.append(c); } } return buf.toString(); }
[ "public", "static", "String", "sanitize", "(", "String", "source", ",", "CharacterValidator", "validator", ")", "{", "if", "(", "source", "==", "null", ")", "{", "return", "null", ";", "}", "int", "nn", "=", "source", ".", "length", "(", ")", ";", "Str...
Sanitize the specified String so that only valid characters are in it.
[ "Sanitize", "the", "specified", "String", "so", "that", "only", "valid", "characters", "are", "in", "it", "." ]
a64d9ef42b69819bdb2c66bddac6a64caef928b6
https://github.com/samskivert/samskivert/blob/a64d9ef42b69819bdb2c66bddac6a64caef928b6/src/main/java/com/samskivert/util/StringUtil.java#L179-L193
train
samskivert/samskivert
src/main/java/com/samskivert/util/StringUtil.java
StringUtil.sanitize
public static String sanitize (String source, String charRegex) { final StringBuilder buf = new StringBuilder(" "); final Matcher matcher = Pattern.compile(charRegex).matcher(buf); return sanitize(source, new CharacterValidator() { public boolean isValid (char c) { buf.setCharAt(0, c); return matcher.matches(); } }); }
java
public static String sanitize (String source, String charRegex) { final StringBuilder buf = new StringBuilder(" "); final Matcher matcher = Pattern.compile(charRegex).matcher(buf); return sanitize(source, new CharacterValidator() { public boolean isValid (char c) { buf.setCharAt(0, c); return matcher.matches(); } }); }
[ "public", "static", "String", "sanitize", "(", "String", "source", ",", "String", "charRegex", ")", "{", "final", "StringBuilder", "buf", "=", "new", "StringBuilder", "(", "\" \"", ")", ";", "final", "Matcher", "matcher", "=", "Pattern", ".", "compile", "(",...
Sanitize the specified String such that each character must match against the regex specified.
[ "Sanitize", "the", "specified", "String", "such", "that", "each", "character", "must", "match", "against", "the", "regex", "specified", "." ]
a64d9ef42b69819bdb2c66bddac6a64caef928b6
https://github.com/samskivert/samskivert/blob/a64d9ef42b69819bdb2c66bddac6a64caef928b6/src/main/java/com/samskivert/util/StringUtil.java#L199-L209
train
samskivert/samskivert
src/main/java/com/samskivert/util/StringUtil.java
StringUtil.pad
public static String pad (String value, int width, char c) { // sanity check if (width <= 0) { throw new IllegalArgumentException("Pad width must be greater than zero."); } int l = value.length(); return (l >= width) ? value : value + fill(c, width - l); }
java
public static String pad (String value, int width, char c) { // sanity check if (width <= 0) { throw new IllegalArgumentException("Pad width must be greater than zero."); } int l = value.length(); return (l >= width) ? value : value + fill(c, width - l); }
[ "public", "static", "String", "pad", "(", "String", "value", ",", "int", "width", ",", "char", "c", ")", "{", "// sanity check", "if", "(", "width", "<=", "0", ")", "{", "throw", "new", "IllegalArgumentException", "(", "\"Pad width must be greater than zero.\"",...
Pads the supplied string to the requested string width by appending the specified character to the end of the returned string. If the original string is wider than the requested width, it is returned unmodified.
[ "Pads", "the", "supplied", "string", "to", "the", "requested", "string", "width", "by", "appending", "the", "specified", "character", "to", "the", "end", "of", "the", "returned", "string", ".", "If", "the", "original", "string", "is", "wider", "than", "the",...
a64d9ef42b69819bdb2c66bddac6a64caef928b6
https://github.com/samskivert/samskivert/blob/a64d9ef42b69819bdb2c66bddac6a64caef928b6/src/main/java/com/samskivert/util/StringUtil.java#L255-L264
train
samskivert/samskivert
src/main/java/com/samskivert/util/StringUtil.java
StringUtil.fill
public static String fill (char c, int count) { char[] sameChars = new char[count]; Arrays.fill(sameChars, c); return new String(sameChars); }
java
public static String fill (char c, int count) { char[] sameChars = new char[count]; Arrays.fill(sameChars, c); return new String(sameChars); }
[ "public", "static", "String", "fill", "(", "char", "c", ",", "int", "count", ")", "{", "char", "[", "]", "sameChars", "=", "new", "char", "[", "count", "]", ";", "Arrays", ".", "fill", "(", "sameChars", ",", "c", ")", ";", "return", "new", "String"...
Returns a string containing the specified character repeated the specified number of times.
[ "Returns", "a", "string", "containing", "the", "specified", "character", "repeated", "the", "specified", "number", "of", "times", "." ]
a64d9ef42b69819bdb2c66bddac6a64caef928b6
https://github.com/samskivert/samskivert/blob/a64d9ef42b69819bdb2c66bddac6a64caef928b6/src/main/java/com/samskivert/util/StringUtil.java#L303-L308
train
samskivert/samskivert
src/main/java/com/samskivert/util/StringUtil.java
StringUtil.split
public static String[] split (String source, String sep) { // handle the special case of a zero-component source if (isBlank(source)) { return new String[0]; } int tcount = 0, tpos = -1, tstart = 0; // count up the number of tokens while ((tpos = source.indexOf(sep, tpos+1)) != -1) { tcount++; } String[] tokens = new String[tcount+1]; tpos = -1; tcount = 0; // do the split while ((tpos = source.indexOf(sep, tpos+1)) != -1) { tokens[tcount] = source.substring(tstart, tpos); tstart = tpos+1; tcount++; } // grab the last token tokens[tcount] = source.substring(tstart); return tokens; }
java
public static String[] split (String source, String sep) { // handle the special case of a zero-component source if (isBlank(source)) { return new String[0]; } int tcount = 0, tpos = -1, tstart = 0; // count up the number of tokens while ((tpos = source.indexOf(sep, tpos+1)) != -1) { tcount++; } String[] tokens = new String[tcount+1]; tpos = -1; tcount = 0; // do the split while ((tpos = source.indexOf(sep, tpos+1)) != -1) { tokens[tcount] = source.substring(tstart, tpos); tstart = tpos+1; tcount++; } // grab the last token tokens[tcount] = source.substring(tstart); return tokens; }
[ "public", "static", "String", "[", "]", "split", "(", "String", "source", ",", "String", "sep", ")", "{", "// handle the special case of a zero-component source", "if", "(", "isBlank", "(", "source", ")", ")", "{", "return", "new", "String", "[", "0", "]", "...
Splits the supplied string into components based on the specified separator string.
[ "Splits", "the", "supplied", "string", "into", "components", "based", "on", "the", "specified", "separator", "string", "." ]
a64d9ef42b69819bdb2c66bddac6a64caef928b6
https://github.com/samskivert/samskivert/blob/a64d9ef42b69819bdb2c66bddac6a64caef928b6/src/main/java/com/samskivert/util/StringUtil.java#L999-L1027
train
samskivert/samskivert
src/main/java/com/samskivert/util/StringUtil.java
StringUtil.wordWrap
public static String wordWrap (String str, int width) { int size = str.length(); StringBuilder buf = new StringBuilder(size + size/width); int lastidx = 0; while (lastidx < size) { if (lastidx + width >= size) { buf.append(str.substring(lastidx)); break; } int lastws = lastidx; for (int ii = lastidx, ll = lastidx + width; ii < ll; ii++) { char c = str.charAt(ii); if (c == '\n') { buf.append(str.substring(lastidx, ii + 1)); lastidx = ii + 1; break; } else if (Character.isWhitespace(c)) { lastws = ii; } } if (lastws == lastidx) { buf.append(str.substring(lastidx, lastidx + width)).append(LINE_SEPARATOR); lastidx += width; } else if (lastws > lastidx) { buf.append(str.substring(lastidx, lastws)).append(LINE_SEPARATOR); lastidx = lastws + 1; } } return buf.toString(); }
java
public static String wordWrap (String str, int width) { int size = str.length(); StringBuilder buf = new StringBuilder(size + size/width); int lastidx = 0; while (lastidx < size) { if (lastidx + width >= size) { buf.append(str.substring(lastidx)); break; } int lastws = lastidx; for (int ii = lastidx, ll = lastidx + width; ii < ll; ii++) { char c = str.charAt(ii); if (c == '\n') { buf.append(str.substring(lastidx, ii + 1)); lastidx = ii + 1; break; } else if (Character.isWhitespace(c)) { lastws = ii; } } if (lastws == lastidx) { buf.append(str.substring(lastidx, lastidx + width)).append(LINE_SEPARATOR); lastidx += width; } else if (lastws > lastidx) { buf.append(str.substring(lastidx, lastws)).append(LINE_SEPARATOR); lastidx = lastws + 1; } } return buf.toString(); }
[ "public", "static", "String", "wordWrap", "(", "String", "str", ",", "int", "width", ")", "{", "int", "size", "=", "str", ".", "length", "(", ")", ";", "StringBuilder", "buf", "=", "new", "StringBuilder", "(", "size", "+", "size", "/", "width", ")", ...
Wordwraps a string. Treats any whitespace character as a single character. <p>If you want the text to wrap for a graphical display, use a wordwrapping component such as {@link com.samskivert.swing.Label} instead. @param str String to word-wrap. @param width Maximum line length.
[ "Wordwraps", "a", "string", ".", "Treats", "any", "whitespace", "character", "as", "a", "single", "character", "." ]
a64d9ef42b69819bdb2c66bddac6a64caef928b6
https://github.com/samskivert/samskivert/blob/a64d9ef42b69819bdb2c66bddac6a64caef928b6/src/main/java/com/samskivert/util/StringUtil.java#L1224-L1254
train
nextreports/nextreports-engine
src/ro/nextreports/engine/chart/Chart.java
Chart.getI18nkeys
public List<String> getI18nkeys() { if (i18nkeys == null) { return new ArrayList<String>(); } Collections.sort(i18nkeys, new Comparator<String>() { @Override public int compare(String o1, String o2) { return Collator.getInstance().compare(o1, o2); } }); return i18nkeys; }
java
public List<String> getI18nkeys() { if (i18nkeys == null) { return new ArrayList<String>(); } Collections.sort(i18nkeys, new Comparator<String>() { @Override public int compare(String o1, String o2) { return Collator.getInstance().compare(o1, o2); } }); return i18nkeys; }
[ "public", "List", "<", "String", ">", "getI18nkeys", "(", ")", "{", "if", "(", "i18nkeys", "==", "null", ")", "{", "return", "new", "ArrayList", "<", "String", ">", "(", ")", ";", "}", "Collections", ".", "sort", "(", "i18nkeys", ",", "new", "Compara...
Get keys for internationalized strings @return list of keys for internationalized strings
[ "Get", "keys", "for", "internationalized", "strings" ]
a847575a9298b5fce63b88961190c5b83ddccc44
https://github.com/nextreports/nextreports-engine/blob/a847575a9298b5fce63b88961190c5b83ddccc44/src/ro/nextreports/engine/chart/Chart.java#L666-L678
train
samskivert/samskivert
src/main/java/com/samskivert/velocity/I18nTool.java
I18nTool.xlate
public String xlate (String key, Object arg) { return _msgmgr.getMessage(_req, key, new Object[] { arg }); }
java
public String xlate (String key, Object arg) { return _msgmgr.getMessage(_req, key, new Object[] { arg }); }
[ "public", "String", "xlate", "(", "String", "key", ",", "Object", "arg", ")", "{", "return", "_msgmgr", ".", "getMessage", "(", "_req", ",", "key", ",", "new", "Object", "[", "]", "{", "arg", "}", ")", ";", "}" ]
Looks up the specified message and creates the translation string using the supplied argument.
[ "Looks", "up", "the", "specified", "message", "and", "creates", "the", "translation", "string", "using", "the", "supplied", "argument", "." ]
a64d9ef42b69819bdb2c66bddac6a64caef928b6
https://github.com/samskivert/samskivert/blob/a64d9ef42b69819bdb2c66bddac6a64caef928b6/src/main/java/com/samskivert/velocity/I18nTool.java#L71-L74
train
samskivert/samskivert
src/main/java/com/samskivert/velocity/I18nTool.java
I18nTool.xlate
public String xlate (String key, Object arg1, Object arg2) { return _msgmgr.getMessage(_req, key, new Object[] { arg1, arg2 }); }
java
public String xlate (String key, Object arg1, Object arg2) { return _msgmgr.getMessage(_req, key, new Object[] { arg1, arg2 }); }
[ "public", "String", "xlate", "(", "String", "key", ",", "Object", "arg1", ",", "Object", "arg2", ")", "{", "return", "_msgmgr", ".", "getMessage", "(", "_req", ",", "key", ",", "new", "Object", "[", "]", "{", "arg1", ",", "arg2", "}", ")", ";", "}"...
Looks up the specified message and creates the translation string using the supplied arguments.
[ "Looks", "up", "the", "specified", "message", "and", "creates", "the", "translation", "string", "using", "the", "supplied", "arguments", "." ]
a64d9ef42b69819bdb2c66bddac6a64caef928b6
https://github.com/samskivert/samskivert/blob/a64d9ef42b69819bdb2c66bddac6a64caef928b6/src/main/java/com/samskivert/velocity/I18nTool.java#L80-L83
train
samskivert/samskivert
src/main/java/com/samskivert/velocity/I18nTool.java
I18nTool.date
protected String date (int style, Object arg) { Date when = massageDate(arg); if (when == null) { return "<!" + arg + ">"; } return DateFormat.getDateInstance(style, getLocale()).format(when); }
java
protected String date (int style, Object arg) { Date when = massageDate(arg); if (when == null) { return "<!" + arg + ">"; } return DateFormat.getDateInstance(style, getLocale()).format(when); }
[ "protected", "String", "date", "(", "int", "style", ",", "Object", "arg", ")", "{", "Date", "when", "=", "massageDate", "(", "arg", ")", ";", "if", "(", "when", "==", "null", ")", "{", "return", "\"<!\"", "+", "arg", "+", "\">\"", ";", "}", "return...
Helper function for formatting dates.
[ "Helper", "function", "for", "formatting", "dates", "." ]
a64d9ef42b69819bdb2c66bddac6a64caef928b6
https://github.com/samskivert/samskivert/blob/a64d9ef42b69819bdb2c66bddac6a64caef928b6/src/main/java/com/samskivert/velocity/I18nTool.java#L137-L144
train
nextreports/nextreports-engine
src/ro/nextreports/engine/exporter/ResultExporter.java
ResultExporter.export
public boolean export() throws QueryException, NoDataFoundException { start = true; testForData(); if (needsFirstCrossing() && !(this instanceof FirstCrossingExporter)) { FirstCrossingExporter fe = new FirstCrossingExporter(bean); fe.export(); // get template values from FirstCrossing templatesValues = fe.getTemplatesValues(); groupTemplateKeys = fe.getGroupTemplateKeys(); } initExport(); printHeaderBand(); if (!printContentBands()) { return false; } printFooterBand(); finishExport(); if ((bean.getResult() != null) && (!(this instanceof FirstCrossingExporter)) ) { bean.getResult().close(); } if (this instanceof FirstCrossingExporter) { // after FirstCrossing go to the beginning of the result set try { bean.getResult().getResultSet().beforeFirst(); } catch (SQLException ex) { LOG.error(ex.getMessage(), ex); } } return true; }
java
public boolean export() throws QueryException, NoDataFoundException { start = true; testForData(); if (needsFirstCrossing() && !(this instanceof FirstCrossingExporter)) { FirstCrossingExporter fe = new FirstCrossingExporter(bean); fe.export(); // get template values from FirstCrossing templatesValues = fe.getTemplatesValues(); groupTemplateKeys = fe.getGroupTemplateKeys(); } initExport(); printHeaderBand(); if (!printContentBands()) { return false; } printFooterBand(); finishExport(); if ((bean.getResult() != null) && (!(this instanceof FirstCrossingExporter)) ) { bean.getResult().close(); } if (this instanceof FirstCrossingExporter) { // after FirstCrossing go to the beginning of the result set try { bean.getResult().getResultSet().beforeFirst(); } catch (SQLException ex) { LOG.error(ex.getMessage(), ex); } } return true; }
[ "public", "boolean", "export", "(", ")", "throws", "QueryException", ",", "NoDataFoundException", "{", "start", "=", "true", ";", "testForData", "(", ")", ";", "if", "(", "needsFirstCrossing", "(", ")", "&&", "!", "(", "this", "instanceof", "FirstCrossingExpor...
header page band and footer page band are written in PDF and RTF exporters
[ "header", "page", "band", "and", "footer", "page", "band", "are", "written", "in", "PDF", "and", "RTF", "exporters" ]
a847575a9298b5fce63b88961190c5b83ddccc44
https://github.com/nextreports/nextreports-engine/blob/a847575a9298b5fce63b88961190c5b83ddccc44/src/ro/nextreports/engine/exporter/ResultExporter.java#L268-L306
train
nextreports/nextreports-engine
src/ro/nextreports/engine/exporter/ResultExporter.java
ResultExporter.getIgnoredCellElements
protected Set<CellElement> getIgnoredCellElements(Band band) { Set<CellElement> result = new HashSet<CellElement>(); int rows = band.getRowCount(); int cols = band.getColumnCount(); for (int i = 0; i < rows; i++) { for (int j = 0; j < cols; j++) { BandElement element = band.getElementAt(i, j); if (element == null) { continue; } int rowSpan = element.getRowSpan(); int colSpan = element.getColSpan(); if ((rowSpan > 1) && (colSpan > 1)) { for (int k = 0; k < rowSpan; k++) { for (int m = 0; m < colSpan; m++) { if ((k != 0) || (m != 0)) { result.add(new CellElement(i + k, j + m)); } } } } else if (rowSpan > 1) { for (int k = 1; k < rowSpan; k++) { result.add(new CellElement(i + k, j)); } } else if (colSpan > 1) { for (int k = 1; k < colSpan; k++) { result.add(new CellElement(i, j + k)); } } } } return result; }
java
protected Set<CellElement> getIgnoredCellElements(Band band) { Set<CellElement> result = new HashSet<CellElement>(); int rows = band.getRowCount(); int cols = band.getColumnCount(); for (int i = 0; i < rows; i++) { for (int j = 0; j < cols; j++) { BandElement element = band.getElementAt(i, j); if (element == null) { continue; } int rowSpan = element.getRowSpan(); int colSpan = element.getColSpan(); if ((rowSpan > 1) && (colSpan > 1)) { for (int k = 0; k < rowSpan; k++) { for (int m = 0; m < colSpan; m++) { if ((k != 0) || (m != 0)) { result.add(new CellElement(i + k, j + m)); } } } } else if (rowSpan > 1) { for (int k = 1; k < rowSpan; k++) { result.add(new CellElement(i + k, j)); } } else if (colSpan > 1) { for (int k = 1; k < colSpan; k++) { result.add(new CellElement(i, j + k)); } } } } return result; }
[ "protected", "Set", "<", "CellElement", ">", "getIgnoredCellElements", "(", "Band", "band", ")", "{", "Set", "<", "CellElement", ">", "result", "=", "new", "HashSet", "<", "CellElement", ">", "(", ")", ";", "int", "rows", "=", "band", ".", "getRowCount", ...
and the other merged cells are null band elements.
[ "and", "the", "other", "merged", "cells", "are", "null", "band", "elements", "." ]
a847575a9298b5fce63b88961190c5b83ddccc44
https://github.com/nextreports/nextreports-engine/blob/a847575a9298b5fce63b88961190c5b83ddccc44/src/ro/nextreports/engine/exporter/ResultExporter.java#L586-L619
train
nextreports/nextreports-engine
src/ro/nextreports/engine/exporter/ResultExporter.java
ResultExporter.getIgnoredCellElementsForColSpan
protected Set<CellElement> getIgnoredCellElementsForColSpan(Band band) { Set<CellElement> result = new HashSet<CellElement>(); int rows = band.getRowCount(); int cols = band.getColumnCount(); for (int i = 0; i < rows; i++) { for (int j = 0; j < cols; j++) { BandElement element = band.getElementAt(i, j); if (element == null) { continue; } //int rowSpan = element.getRowSpan(); int colSpan = element.getColSpan(); if (colSpan > 1) { for (int k = 1; k < colSpan; k++) { result.add(new CellElement(i, j + k)); } } } } return result; }
java
protected Set<CellElement> getIgnoredCellElementsForColSpan(Band band) { Set<CellElement> result = new HashSet<CellElement>(); int rows = band.getRowCount(); int cols = band.getColumnCount(); for (int i = 0; i < rows; i++) { for (int j = 0; j < cols; j++) { BandElement element = band.getElementAt(i, j); if (element == null) { continue; } //int rowSpan = element.getRowSpan(); int colSpan = element.getColSpan(); if (colSpan > 1) { for (int k = 1; k < colSpan; k++) { result.add(new CellElement(i, j + k)); } } } } return result; }
[ "protected", "Set", "<", "CellElement", ">", "getIgnoredCellElementsForColSpan", "(", "Band", "band", ")", "{", "Set", "<", "CellElement", ">", "result", "=", "new", "HashSet", "<", "CellElement", ">", "(", ")", ";", "int", "rows", "=", "band", ".", "getRo...
because there was no support for row span
[ "because", "there", "was", "no", "support", "for", "row", "span" ]
a847575a9298b5fce63b88961190c5b83ddccc44
https://github.com/nextreports/nextreports-engine/blob/a847575a9298b5fce63b88961190c5b83ddccc44/src/ro/nextreports/engine/exporter/ResultExporter.java#L623-L643
train
nextreports/nextreports-engine
src/ro/nextreports/engine/exporter/ResultExporter.java
ResultExporter.fireExporterEvent
void fireExporterEvent(ExporterEvent evt) { Object[] listeners = listenerList.getListenerList(); // Each listener occupies two elements - the first is the listener class // and the second is the listener instance for (int i = 0; i < listeners.length; i += 2) { if (listeners[i] == ExporterEventListener.class) { ((ExporterEventListener) listeners[i + 1]).notify(evt); } } }
java
void fireExporterEvent(ExporterEvent evt) { Object[] listeners = listenerList.getListenerList(); // Each listener occupies two elements - the first is the listener class // and the second is the listener instance for (int i = 0; i < listeners.length; i += 2) { if (listeners[i] == ExporterEventListener.class) { ((ExporterEventListener) listeners[i + 1]).notify(evt); } } }
[ "void", "fireExporterEvent", "(", "ExporterEvent", "evt", ")", "{", "Object", "[", "]", "listeners", "=", "listenerList", ".", "getListenerList", "(", ")", ";", "// Each listener occupies two elements - the first is the listener class", "// and the second is the listener instan...
This private class is used to fire ExporterEvents
[ "This", "private", "class", "is", "used", "to", "fire", "ExporterEvents" ]
a847575a9298b5fce63b88961190c5b83ddccc44
https://github.com/nextreports/nextreports-engine/blob/a847575a9298b5fce63b88961190c5b83ddccc44/src/ro/nextreports/engine/exporter/ResultExporter.java#L1587-L1596
train
nextreports/nextreports-engine
src/ro/nextreports/engine/exporter/ResultExporter.java
ResultExporter.getFunctionTemplate
private String getFunctionTemplate(GroupCache gc, FunctionBandElement fbe, boolean previous) throws QueryException { StringBuilder templateKey = new StringBuilder(); if (gc == null) { // function in Header templateKey.append("F_"). append(fbe.getFunction()).append("_"). append(fbe.getColumn()); return templateKey.toString(); } // function in group header String groupColumn = gc.getGroup().getColumn(); Object groupValue; if (previous) { if (resultSetRow == 0) { groupValue = getResult().nextValue(groupColumn); } else { groupValue = previousRow[getResult().getColumnIndex(groupColumn)]; } } else { groupValue = getResult().nextValue(groupColumn); } // keep the current value of the group groupTemplateKeys.put("G"+ gc.getGroup().getName(), "G"+ gc.getGroup().getName() + "_" + previousRow[getResult().getColumnIndex(groupColumn)]); templateKey.append("G").append(gc.getGroup().getName()).append("_F_"). append(fbe.getFunction()).append("_"). append(fbe.getColumn()).append("_"). append(groupValue); int group = Integer.parseInt(gc.getGroup().getName()); StringBuilder result = new StringBuilder(); for (int i=1; i<group; i++) { result.append(groupTemplateKeys.get("G"+ i)).append("_"); } result.append(templateKey.toString()); return result.toString(); }
java
private String getFunctionTemplate(GroupCache gc, FunctionBandElement fbe, boolean previous) throws QueryException { StringBuilder templateKey = new StringBuilder(); if (gc == null) { // function in Header templateKey.append("F_"). append(fbe.getFunction()).append("_"). append(fbe.getColumn()); return templateKey.toString(); } // function in group header String groupColumn = gc.getGroup().getColumn(); Object groupValue; if (previous) { if (resultSetRow == 0) { groupValue = getResult().nextValue(groupColumn); } else { groupValue = previousRow[getResult().getColumnIndex(groupColumn)]; } } else { groupValue = getResult().nextValue(groupColumn); } // keep the current value of the group groupTemplateKeys.put("G"+ gc.getGroup().getName(), "G"+ gc.getGroup().getName() + "_" + previousRow[getResult().getColumnIndex(groupColumn)]); templateKey.append("G").append(gc.getGroup().getName()).append("_F_"). append(fbe.getFunction()).append("_"). append(fbe.getColumn()).append("_"). append(groupValue); int group = Integer.parseInt(gc.getGroup().getName()); StringBuilder result = new StringBuilder(); for (int i=1; i<group; i++) { result.append(groupTemplateKeys.get("G"+ i)).append("_"); } result.append(templateKey.toString()); return result.toString(); }
[ "private", "String", "getFunctionTemplate", "(", "GroupCache", "gc", ",", "FunctionBandElement", "fbe", ",", "boolean", "previous", ")", "throws", "QueryException", "{", "StringBuilder", "templateKey", "=", "new", "StringBuilder", "(", ")", ";", "if", "(", "gc", ...
string template used by functions in header and group header bands
[ "string", "template", "used", "by", "functions", "in", "header", "and", "group", "header", "bands" ]
a847575a9298b5fce63b88961190c5b83ddccc44
https://github.com/nextreports/nextreports-engine/blob/a847575a9298b5fce63b88961190c5b83ddccc44/src/ro/nextreports/engine/exporter/ResultExporter.java#L2105-L2144
train
nextreports/nextreports-engine
src/ro/nextreports/engine/exporter/ResultExporter.java
ResultExporter.getCurrentValueForGroup
protected String getCurrentValueForGroup(String group) { Object obj = groupValues.get(group); if (obj == null) { return ""; } return obj.toString(); }
java
protected String getCurrentValueForGroup(String group) { Object obj = groupValues.get(group); if (obj == null) { return ""; } return obj.toString(); }
[ "protected", "String", "getCurrentValueForGroup", "(", "String", "group", ")", "{", "Object", "obj", "=", "groupValues", ".", "get", "(", "group", ")", ";", "if", "(", "obj", "==", "null", ")", "{", "return", "\"\"", ";", "}", "return", "obj", ".", "to...
group is G1, G2 ,...
[ "group", "is", "G1", "G2", "..." ]
a847575a9298b5fce63b88961190c5b83ddccc44
https://github.com/nextreports/nextreports-engine/blob/a847575a9298b5fce63b88961190c5b83ddccc44/src/ro/nextreports/engine/exporter/ResultExporter.java#L2188-L2194
train
Omertron/api-thetvdb
src/main/java/com/omertron/thetvdbapi/tools/DOMHelper.java
DOMHelper.getValueFromElement
public static String getValueFromElement(Element element, String tagName) { NodeList elementNodeList = element.getElementsByTagName(tagName); if (elementNodeList == null) { return ""; } else { Element tagElement = (Element) elementNodeList.item(0); if (tagElement == null) { return ""; } NodeList tagNodeList = tagElement.getChildNodes(); if (tagNodeList == null || tagNodeList.getLength() == 0) { return ""; } return tagNodeList.item(0).getNodeValue(); } }
java
public static String getValueFromElement(Element element, String tagName) { NodeList elementNodeList = element.getElementsByTagName(tagName); if (elementNodeList == null) { return ""; } else { Element tagElement = (Element) elementNodeList.item(0); if (tagElement == null) { return ""; } NodeList tagNodeList = tagElement.getChildNodes(); if (tagNodeList == null || tagNodeList.getLength() == 0) { return ""; } return tagNodeList.item(0).getNodeValue(); } }
[ "public", "static", "String", "getValueFromElement", "(", "Element", "element", ",", "String", "tagName", ")", "{", "NodeList", "elementNodeList", "=", "element", ".", "getElementsByTagName", "(", "tagName", ")", ";", "if", "(", "elementNodeList", "==", "null", ...
Gets the string value of the tag element name passed @param element @param tagName @return
[ "Gets", "the", "string", "value", "of", "the", "tag", "element", "name", "passed" ]
2ff9f9580e76043f19d2fc3234d87e16a95fa485
https://github.com/Omertron/api-thetvdb/blob/2ff9f9580e76043f19d2fc3234d87e16a95fa485/src/main/java/com/omertron/thetvdbapi/tools/DOMHelper.java#L93-L109
train
Omertron/api-thetvdb
src/main/java/com/omertron/thetvdbapi/tools/DOMHelper.java
DOMHelper.convertDocToString
public static String convertDocToString(Document doc) throws TransformerException { //set up a transformer TransformerFactory transfac = TransformerFactory.newInstance(); Transformer trans = transfac.newTransformer(); trans.setOutputProperty(OutputKeys.OMIT_XML_DECLARATION, YES); trans.setOutputProperty(OutputKeys.INDENT, YES); //create string from xml tree StringWriter sw = new StringWriter(); StreamResult result = new StreamResult(sw); DOMSource source = new DOMSource(doc); trans.transform(source, result); return sw.toString(); }
java
public static String convertDocToString(Document doc) throws TransformerException { //set up a transformer TransformerFactory transfac = TransformerFactory.newInstance(); Transformer trans = transfac.newTransformer(); trans.setOutputProperty(OutputKeys.OMIT_XML_DECLARATION, YES); trans.setOutputProperty(OutputKeys.INDENT, YES); //create string from xml tree StringWriter sw = new StringWriter(); StreamResult result = new StreamResult(sw); DOMSource source = new DOMSource(doc); trans.transform(source, result); return sw.toString(); }
[ "public", "static", "String", "convertDocToString", "(", "Document", "doc", ")", "throws", "TransformerException", "{", "//set up a transformer", "TransformerFactory", "transfac", "=", "TransformerFactory", ".", "newInstance", "(", ")", ";", "Transformer", "trans", "=",...
Convert a DOM document to a string @param doc @return @throws TransformerException
[ "Convert", "a", "DOM", "document", "to", "a", "string" ]
2ff9f9580e76043f19d2fc3234d87e16a95fa485
https://github.com/Omertron/api-thetvdb/blob/2ff9f9580e76043f19d2fc3234d87e16a95fa485/src/main/java/com/omertron/thetvdbapi/tools/DOMHelper.java#L182-L195
train
Omertron/api-thetvdb
src/main/java/com/omertron/thetvdbapi/tools/DOMHelper.java
DOMHelper.writeDocumentToFile
public static boolean writeDocumentToFile(Document doc, String localFile) { try { TransformerFactory transfact = TransformerFactory.newInstance(); Transformer trans = transfact.newTransformer(); trans.setOutputProperty(OutputKeys.OMIT_XML_DECLARATION, YES); trans.setOutputProperty(OutputKeys.INDENT, YES); trans.transform(new DOMSource(doc), new StreamResult(new File(localFile))); return true; } catch (TransformerConfigurationException ex) { LOG.warn(ERROR_WRITING, localFile, ex); return false; } catch (TransformerException ex) { LOG.warn(ERROR_WRITING, localFile, ex); return false; } }
java
public static boolean writeDocumentToFile(Document doc, String localFile) { try { TransformerFactory transfact = TransformerFactory.newInstance(); Transformer trans = transfact.newTransformer(); trans.setOutputProperty(OutputKeys.OMIT_XML_DECLARATION, YES); trans.setOutputProperty(OutputKeys.INDENT, YES); trans.transform(new DOMSource(doc), new StreamResult(new File(localFile))); return true; } catch (TransformerConfigurationException ex) { LOG.warn(ERROR_WRITING, localFile, ex); return false; } catch (TransformerException ex) { LOG.warn(ERROR_WRITING, localFile, ex); return false; } }
[ "public", "static", "boolean", "writeDocumentToFile", "(", "Document", "doc", ",", "String", "localFile", ")", "{", "try", "{", "TransformerFactory", "transfact", "=", "TransformerFactory", ".", "newInstance", "(", ")", ";", "Transformer", "trans", "=", "transfact...
Write the Document out to a file using nice formatting @param doc The document to save @param localFile The file to write to @return
[ "Write", "the", "Document", "out", "to", "a", "file", "using", "nice", "formatting" ]
2ff9f9580e76043f19d2fc3234d87e16a95fa485
https://github.com/Omertron/api-thetvdb/blob/2ff9f9580e76043f19d2fc3234d87e16a95fa485/src/main/java/com/omertron/thetvdbapi/tools/DOMHelper.java#L204-L219
train
Omertron/api-thetvdb
src/main/java/com/omertron/thetvdbapi/tools/DOMHelper.java
DOMHelper.appendChild
public static void appendChild(Document doc, Element parentElement, String elementName, String elementValue) { Element child = doc.createElement(elementName); Text text = doc.createTextNode(elementValue); child.appendChild(text); parentElement.appendChild(child); }
java
public static void appendChild(Document doc, Element parentElement, String elementName, String elementValue) { Element child = doc.createElement(elementName); Text text = doc.createTextNode(elementValue); child.appendChild(text); parentElement.appendChild(child); }
[ "public", "static", "void", "appendChild", "(", "Document", "doc", ",", "Element", "parentElement", ",", "String", "elementName", ",", "String", "elementValue", ")", "{", "Element", "child", "=", "doc", ".", "createElement", "(", "elementName", ")", ";", "Text...
Add a child element to a parent element @param doc @param parentElement @param elementName @param elementValue
[ "Add", "a", "child", "element", "to", "a", "parent", "element" ]
2ff9f9580e76043f19d2fc3234d87e16a95fa485
https://github.com/Omertron/api-thetvdb/blob/2ff9f9580e76043f19d2fc3234d87e16a95fa485/src/main/java/com/omertron/thetvdbapi/tools/DOMHelper.java#L229-L234
train
Omertron/api-thetvdb
src/main/java/com/omertron/thetvdbapi/tools/DOMHelper.java
DOMHelper.waiting
private static void waiting(int milliseconds) { long t0, t1; t0 = System.currentTimeMillis(); do { t1 = System.currentTimeMillis(); } while ((t1 - t0) < milliseconds); }
java
private static void waiting(int milliseconds) { long t0, t1; t0 = System.currentTimeMillis(); do { t1 = System.currentTimeMillis(); } while ((t1 - t0) < milliseconds); }
[ "private", "static", "void", "waiting", "(", "int", "milliseconds", ")", "{", "long", "t0", ",", "t1", ";", "t0", "=", "System", ".", "currentTimeMillis", "(", ")", ";", "do", "{", "t1", "=", "System", ".", "currentTimeMillis", "(", ")", ";", "}", "w...
Wait for a few milliseconds @param milliseconds
[ "Wait", "for", "a", "few", "milliseconds" ]
2ff9f9580e76043f19d2fc3234d87e16a95fa485
https://github.com/Omertron/api-thetvdb/blob/2ff9f9580e76043f19d2fc3234d87e16a95fa485/src/main/java/com/omertron/thetvdbapi/tools/DOMHelper.java#L241-L247
train
houbie/lesscss
src/main/java/com/github/houbie/lesscss/builder/CompilationTask.java
CompilationTask.execute
public Collection<CompilationUnit> execute() throws IOException { List<CompilationUnit> compiledUnits = new ArrayList<CompilationUnit>(); logger.debug("CompilationTask: execute"); long start = System.currentTimeMillis(); for (CompilationUnit unit : compilationUnits) { if (compileIfDirty(unit)) { compiledUnits.add(unit); } } logger.debug("execute finished in {} millis", System.currentTimeMillis() - start); return compiledUnits; }
java
public Collection<CompilationUnit> execute() throws IOException { List<CompilationUnit> compiledUnits = new ArrayList<CompilationUnit>(); logger.debug("CompilationTask: execute"); long start = System.currentTimeMillis(); for (CompilationUnit unit : compilationUnits) { if (compileIfDirty(unit)) { compiledUnits.add(unit); } } logger.debug("execute finished in {} millis", System.currentTimeMillis() - start); return compiledUnits; }
[ "public", "Collection", "<", "CompilationUnit", ">", "execute", "(", ")", "throws", "IOException", "{", "List", "<", "CompilationUnit", ">", "compiledUnits", "=", "new", "ArrayList", "<", "CompilationUnit", ">", "(", ")", ";", "logger", ".", "debug", "(", "\...
Execute the lazy compilation. @return the compilation units that were dirty and got compiled @throws IOException When a resource cannot be read/written
[ "Execute", "the", "lazy", "compilation", "." ]
65196738939263d767e7933f34322536a0c7090f
https://github.com/houbie/lesscss/blob/65196738939263d767e7933f34322536a0c7090f/src/main/java/com/github/houbie/lesscss/builder/CompilationTask.java#L117-L128
train
houbie/lesscss
src/main/java/com/github/houbie/lesscss/builder/CompilationTask.java
CompilationTask.startDaemon
public void startDaemon(final long interval) { if (daemon != null) { throw new RuntimeException("Trying to start daemon while it is still running"); } stopDaemon = false; daemon = new Thread(new Runnable() { @Override public void run() { try { while (!stopDaemon) { try { Collection<CompilationUnit> units = execute(); if (!units.isEmpty() && compilationListener != null) { compilationListener.notifySuccessfulCompilation(units); } } catch (LessParseException e) { System.out.println(e.getMessage()); } Thread.sleep(interval); } } catch (Exception e) { e.printStackTrace(); } daemon = null; } }, "LessCompilationDaemon"); daemon.setDaemon(true); daemon.start(); }
java
public void startDaemon(final long interval) { if (daemon != null) { throw new RuntimeException("Trying to start daemon while it is still running"); } stopDaemon = false; daemon = new Thread(new Runnable() { @Override public void run() { try { while (!stopDaemon) { try { Collection<CompilationUnit> units = execute(); if (!units.isEmpty() && compilationListener != null) { compilationListener.notifySuccessfulCompilation(units); } } catch (LessParseException e) { System.out.println(e.getMessage()); } Thread.sleep(interval); } } catch (Exception e) { e.printStackTrace(); } daemon = null; } }, "LessCompilationDaemon"); daemon.setDaemon(true); daemon.start(); }
[ "public", "void", "startDaemon", "(", "final", "long", "interval", ")", "{", "if", "(", "daemon", "!=", "null", ")", "{", "throw", "new", "RuntimeException", "(", "\"Trying to start daemon while it is still running\"", ")", ";", "}", "stopDaemon", "=", "false", ...
Start a daemon thread that will execute this CompilationTask periodically. @param interval execution interval in milliseconds
[ "Start", "a", "daemon", "thread", "that", "will", "execute", "this", "CompilationTask", "periodically", "." ]
65196738939263d767e7933f34322536a0c7090f
https://github.com/houbie/lesscss/blob/65196738939263d767e7933f34322536a0c7090f/src/main/java/com/github/houbie/lesscss/builder/CompilationTask.java#L135-L163
train
houbie/lesscss
src/main/java/com/github/houbie/lesscss/builder/CompilationTask.java
CompilationTask.compileIfDirty
private boolean compileIfDirty(CompilationUnit unit) throws IOException { if (isDirty(unit)) { logger.debug("compiling less: {}", unit); long start = System.currentTimeMillis(); try { String sourceMapFileName = unit.getSourceMapFile() != null ? unit.getSourceMapFile().getPath() : null; CompilationDetails compilationResult = lessCompiler.compileWithDetails(unit.getSourceAsString(), unit.getResourceReader(), unit.getOptions(), unit.getSourceLocation(), unit.getDestination().getPath(), sourceMapFileName); if (unit.getDestination() != null) { unit.getDestination().getAbsoluteFile().getParentFile().mkdirs(); IOUtils.writeFile(compilationResult.getResult(), unit.getDestination(), unit.getEncoding()); } if (unit.getSourceMapFile() != null && compilationResult.getSourceMap() != null) { unit.getSourceMapFile().getAbsoluteFile().getParentFile().mkdirs(); IOUtils.writeFile(compilationResult.getSourceMap(), unit.getSourceMapFile(), unit.getEncoding()); } updateImportsAndCache(unit, compilationResult.getImports()); logger.info("compilation of less {} finished in {} millis", unit, System.currentTimeMillis() - start); return true; } catch (LessParseException e) { unit.setExceptionTimestamp(System.currentTimeMillis()); cache(unit); throw e; } } return false; }
java
private boolean compileIfDirty(CompilationUnit unit) throws IOException { if (isDirty(unit)) { logger.debug("compiling less: {}", unit); long start = System.currentTimeMillis(); try { String sourceMapFileName = unit.getSourceMapFile() != null ? unit.getSourceMapFile().getPath() : null; CompilationDetails compilationResult = lessCompiler.compileWithDetails(unit.getSourceAsString(), unit.getResourceReader(), unit.getOptions(), unit.getSourceLocation(), unit.getDestination().getPath(), sourceMapFileName); if (unit.getDestination() != null) { unit.getDestination().getAbsoluteFile().getParentFile().mkdirs(); IOUtils.writeFile(compilationResult.getResult(), unit.getDestination(), unit.getEncoding()); } if (unit.getSourceMapFile() != null && compilationResult.getSourceMap() != null) { unit.getSourceMapFile().getAbsoluteFile().getParentFile().mkdirs(); IOUtils.writeFile(compilationResult.getSourceMap(), unit.getSourceMapFile(), unit.getEncoding()); } updateImportsAndCache(unit, compilationResult.getImports()); logger.info("compilation of less {} finished in {} millis", unit, System.currentTimeMillis() - start); return true; } catch (LessParseException e) { unit.setExceptionTimestamp(System.currentTimeMillis()); cache(unit); throw e; } } return false; }
[ "private", "boolean", "compileIfDirty", "(", "CompilationUnit", "unit", ")", "throws", "IOException", "{", "if", "(", "isDirty", "(", "unit", ")", ")", "{", "logger", ".", "debug", "(", "\"compiling less: {}\"", ",", "unit", ")", ";", "long", "start", "=", ...
Compile a CompilationUnit if dirty. @param unit CompilationUnit @return true if the CompilationUnit was dirty @throws IOException
[ "Compile", "a", "CompilationUnit", "if", "dirty", "." ]
65196738939263d767e7933f34322536a0c7090f
https://github.com/houbie/lesscss/blob/65196738939263d767e7933f34322536a0c7090f/src/main/java/com/github/houbie/lesscss/builder/CompilationTask.java#L179-L205
train
Omertron/api-thetvdb
src/main/java/com/omertron/thetvdbapi/TheTVDBApi.java
TheTVDBApi.getSeries
public Series getSeries(String id, String language) throws TvDbException { StringBuilder urlBuilder = new StringBuilder(); urlBuilder.append(BASE_URL) .append(apiKey) .append(SERIES_URL) .append(id) .append("/"); if (StringUtils.isNotBlank(language)) { urlBuilder.append(language).append(XML_EXTENSION); } LOG.trace(URL, urlBuilder.toString()); List<Series> seriesList = TvdbParser.getSeriesList(urlBuilder.toString()); if (seriesList.isEmpty()) { return null; } else { return seriesList.get(0); } }
java
public Series getSeries(String id, String language) throws TvDbException { StringBuilder urlBuilder = new StringBuilder(); urlBuilder.append(BASE_URL) .append(apiKey) .append(SERIES_URL) .append(id) .append("/"); if (StringUtils.isNotBlank(language)) { urlBuilder.append(language).append(XML_EXTENSION); } LOG.trace(URL, urlBuilder.toString()); List<Series> seriesList = TvdbParser.getSeriesList(urlBuilder.toString()); if (seriesList.isEmpty()) { return null; } else { return seriesList.get(0); } }
[ "public", "Series", "getSeries", "(", "String", "id", ",", "String", "language", ")", "throws", "TvDbException", "{", "StringBuilder", "urlBuilder", "=", "new", "StringBuilder", "(", ")", ";", "urlBuilder", ".", "append", "(", "BASE_URL", ")", ".", "append", ...
Get the series information @param id @param language @return @throws com.omertron.thetvdbapi.TvDbException
[ "Get", "the", "series", "information" ]
2ff9f9580e76043f19d2fc3234d87e16a95fa485
https://github.com/Omertron/api-thetvdb/blob/2ff9f9580e76043f19d2fc3234d87e16a95fa485/src/main/java/com/omertron/thetvdbapi/TheTVDBApi.java#L96-L114
train
Omertron/api-thetvdb
src/main/java/com/omertron/thetvdbapi/TheTVDBApi.java
TheTVDBApi.getEpisode
public Episode getEpisode(String seriesId, int seasonNbr, int episodeNbr, String language) throws TvDbException { return getTVEpisode(seriesId, seasonNbr, episodeNbr, language, "/default/"); }
java
public Episode getEpisode(String seriesId, int seasonNbr, int episodeNbr, String language) throws TvDbException { return getTVEpisode(seriesId, seasonNbr, episodeNbr, language, "/default/"); }
[ "public", "Episode", "getEpisode", "(", "String", "seriesId", ",", "int", "seasonNbr", ",", "int", "episodeNbr", ",", "String", "language", ")", "throws", "TvDbException", "{", "return", "getTVEpisode", "(", "seriesId", ",", "seasonNbr", ",", "episodeNbr", ",", ...
Get a specific episode's information @param seriesId @param seasonNbr @param episodeNbr @param language @return @throws com.omertron.thetvdbapi.TvDbException
[ "Get", "a", "specific", "episode", "s", "information" ]
2ff9f9580e76043f19d2fc3234d87e16a95fa485
https://github.com/Omertron/api-thetvdb/blob/2ff9f9580e76043f19d2fc3234d87e16a95fa485/src/main/java/com/omertron/thetvdbapi/TheTVDBApi.java#L179-L181
train
Omertron/api-thetvdb
src/main/java/com/omertron/thetvdbapi/TheTVDBApi.java
TheTVDBApi.getTVEpisode
private Episode getTVEpisode(String seriesId, int seasonNbr, int episodeNbr, String language, String episodeType) throws TvDbException { if (!isValidNumber(seriesId) || !isValidNumber(seasonNbr) || !isValidNumber(episodeNbr)) { // Invalid number passed return new Episode(); } StringBuilder urlBuilder = new StringBuilder(); urlBuilder.append(BASE_URL) .append(apiKey) .append(SERIES_URL) .append(seriesId) .append(episodeType) .append(seasonNbr) .append("/") .append(episodeNbr) .append("/"); if (StringUtils.isNotBlank(language)) { urlBuilder.append(language).append(XML_EXTENSION); } LOG.trace(URL, urlBuilder.toString()); return TvdbParser.getEpisode(urlBuilder.toString()); }
java
private Episode getTVEpisode(String seriesId, int seasonNbr, int episodeNbr, String language, String episodeType) throws TvDbException { if (!isValidNumber(seriesId) || !isValidNumber(seasonNbr) || !isValidNumber(episodeNbr)) { // Invalid number passed return new Episode(); } StringBuilder urlBuilder = new StringBuilder(); urlBuilder.append(BASE_URL) .append(apiKey) .append(SERIES_URL) .append(seriesId) .append(episodeType) .append(seasonNbr) .append("/") .append(episodeNbr) .append("/"); if (StringUtils.isNotBlank(language)) { urlBuilder.append(language).append(XML_EXTENSION); } LOG.trace(URL, urlBuilder.toString()); return TvdbParser.getEpisode(urlBuilder.toString()); }
[ "private", "Episode", "getTVEpisode", "(", "String", "seriesId", ",", "int", "seasonNbr", ",", "int", "episodeNbr", ",", "String", "language", ",", "String", "episodeType", ")", "throws", "TvDbException", "{", "if", "(", "!", "isValidNumber", "(", "seriesId", ...
Generic function to get either the standard TV episode list or the DVD list @param seriesId @param seasonNbr @param episodeNbr @param language @param episodeType @return @throws com.omertron.thetvdbapi.TvDbException
[ "Generic", "function", "to", "get", "either", "the", "standard", "TV", "episode", "list", "or", "the", "DVD", "list" ]
2ff9f9580e76043f19d2fc3234d87e16a95fa485
https://github.com/Omertron/api-thetvdb/blob/2ff9f9580e76043f19d2fc3234d87e16a95fa485/src/main/java/com/omertron/thetvdbapi/TheTVDBApi.java#L209-L231
train
Omertron/api-thetvdb
src/main/java/com/omertron/thetvdbapi/TheTVDBApi.java
TheTVDBApi.getActors
public List<Actor> getActors(String seriesId) throws TvDbException { StringBuilder urlBuilder = new StringBuilder(); urlBuilder.append(BASE_URL) .append(apiKey) .append(SERIES_URL) .append(seriesId) .append("/actors.xml"); LOG.trace(URL, urlBuilder.toString()); return TvdbParser.getActors(urlBuilder.toString()); }
java
public List<Actor> getActors(String seriesId) throws TvDbException { StringBuilder urlBuilder = new StringBuilder(); urlBuilder.append(BASE_URL) .append(apiKey) .append(SERIES_URL) .append(seriesId) .append("/actors.xml"); LOG.trace(URL, urlBuilder.toString()); return TvdbParser.getActors(urlBuilder.toString()); }
[ "public", "List", "<", "Actor", ">", "getActors", "(", "String", "seriesId", ")", "throws", "TvDbException", "{", "StringBuilder", "urlBuilder", "=", "new", "StringBuilder", "(", ")", ";", "urlBuilder", ".", "append", "(", "BASE_URL", ")", ".", "append", "("...
Get a list of actors from the series id @param seriesId @return @throws com.omertron.thetvdbapi.TvDbException
[ "Get", "a", "list", "of", "actors", "from", "the", "series", "id" ]
2ff9f9580e76043f19d2fc3234d87e16a95fa485
https://github.com/Omertron/api-thetvdb/blob/2ff9f9580e76043f19d2fc3234d87e16a95fa485/src/main/java/com/omertron/thetvdbapi/TheTVDBApi.java#L325-L335
train
Omertron/api-thetvdb
src/main/java/com/omertron/thetvdbapi/TheTVDBApi.java
TheTVDBApi.searchSeries
public List<Series> searchSeries(String title, String language) throws TvDbException { StringBuilder urlBuilder = new StringBuilder(); try { urlBuilder.append(BASE_URL) .append("GetSeries.php?seriesname=") .append(URLEncoder.encode(title, "UTF-8")); if (StringUtils.isNotBlank(language)) { urlBuilder.append("&language=").append(language); } } catch (UnsupportedEncodingException ex) { LOG.trace("Failed to encode title: {}", title, ex); // Try and use the raw title urlBuilder.append(title); } LOG.trace(URL, urlBuilder.toString()); return TvdbParser.getSeriesList(urlBuilder.toString()); }
java
public List<Series> searchSeries(String title, String language) throws TvDbException { StringBuilder urlBuilder = new StringBuilder(); try { urlBuilder.append(BASE_URL) .append("GetSeries.php?seriesname=") .append(URLEncoder.encode(title, "UTF-8")); if (StringUtils.isNotBlank(language)) { urlBuilder.append("&language=").append(language); } } catch (UnsupportedEncodingException ex) { LOG.trace("Failed to encode title: {}", title, ex); // Try and use the raw title urlBuilder.append(title); } LOG.trace(URL, urlBuilder.toString()); return TvdbParser.getSeriesList(urlBuilder.toString()); }
[ "public", "List", "<", "Series", ">", "searchSeries", "(", "String", "title", ",", "String", "language", ")", "throws", "TvDbException", "{", "StringBuilder", "urlBuilder", "=", "new", "StringBuilder", "(", ")", ";", "try", "{", "urlBuilder", ".", "append", ...
Get a list of series using a title and language @param title @param language @return @throws TvDbException
[ "Get", "a", "list", "of", "series", "using", "a", "title", "and", "language" ]
2ff9f9580e76043f19d2fc3234d87e16a95fa485
https://github.com/Omertron/api-thetvdb/blob/2ff9f9580e76043f19d2fc3234d87e16a95fa485/src/main/java/com/omertron/thetvdbapi/TheTVDBApi.java#L345-L363
train
Omertron/api-thetvdb
src/main/java/com/omertron/thetvdbapi/TheTVDBApi.java
TheTVDBApi.getEpisodeById
public Episode getEpisodeById(String episodeId, String language) throws TvDbException { StringBuilder urlBuilder = new StringBuilder(); urlBuilder.append(BASE_URL) .append(apiKey) .append("/episodes/") .append(episodeId) .append("/"); if (StringUtils.isNotBlank(language)) { urlBuilder.append(language); urlBuilder.append(XML_EXTENSION); } LOG.trace(URL, urlBuilder.toString()); return TvdbParser.getEpisode(urlBuilder.toString()); }
java
public Episode getEpisodeById(String episodeId, String language) throws TvDbException { StringBuilder urlBuilder = new StringBuilder(); urlBuilder.append(BASE_URL) .append(apiKey) .append("/episodes/") .append(episodeId) .append("/"); if (StringUtils.isNotBlank(language)) { urlBuilder.append(language); urlBuilder.append(XML_EXTENSION); } LOG.trace(URL, urlBuilder.toString()); return TvdbParser.getEpisode(urlBuilder.toString()); }
[ "public", "Episode", "getEpisodeById", "(", "String", "episodeId", ",", "String", "language", ")", "throws", "TvDbException", "{", "StringBuilder", "urlBuilder", "=", "new", "StringBuilder", "(", ")", ";", "urlBuilder", ".", "append", "(", "BASE_URL", ")", ".", ...
Get information for a specific episode @param episodeId @param language @return @throws com.omertron.thetvdbapi.TvDbException
[ "Get", "information", "for", "a", "specific", "episode" ]
2ff9f9580e76043f19d2fc3234d87e16a95fa485
https://github.com/Omertron/api-thetvdb/blob/2ff9f9580e76043f19d2fc3234d87e16a95fa485/src/main/java/com/omertron/thetvdbapi/TheTVDBApi.java#L373-L388
train
Omertron/api-thetvdb
src/main/java/com/omertron/thetvdbapi/TheTVDBApi.java
TheTVDBApi.getWeeklyUpdates
public TVDBUpdates getWeeklyUpdates(int seriesId) throws TvDbException { StringBuilder urlBuilder = new StringBuilder(); urlBuilder.append(BASE_URL) .append(apiKey) .append(WEEKLY_UPDATES_URL); LOG.trace(URL, urlBuilder.toString()); return TvdbParser.getUpdates(urlBuilder.toString(), seriesId); }
java
public TVDBUpdates getWeeklyUpdates(int seriesId) throws TvDbException { StringBuilder urlBuilder = new StringBuilder(); urlBuilder.append(BASE_URL) .append(apiKey) .append(WEEKLY_UPDATES_URL); LOG.trace(URL, urlBuilder.toString()); return TvdbParser.getUpdates(urlBuilder.toString(), seriesId); }
[ "public", "TVDBUpdates", "getWeeklyUpdates", "(", "int", "seriesId", ")", "throws", "TvDbException", "{", "StringBuilder", "urlBuilder", "=", "new", "StringBuilder", "(", ")", ";", "urlBuilder", ".", "append", "(", "BASE_URL", ")", ".", "append", "(", "apiKey", ...
Get the weekly updates limited by Series ID @param seriesId 0 (zero) gets all series @return @throws com.omertron.thetvdbapi.TvDbException
[ "Get", "the", "weekly", "updates", "limited", "by", "Series", "ID" ]
2ff9f9580e76043f19d2fc3234d87e16a95fa485
https://github.com/Omertron/api-thetvdb/blob/2ff9f9580e76043f19d2fc3234d87e16a95fa485/src/main/java/com/omertron/thetvdbapi/TheTVDBApi.java#L407-L416
train
Omertron/api-thetvdb
src/main/java/com/omertron/thetvdbapi/tools/TvdbParser.java
TvdbParser.getActors
public static List<Actor> getActors(String urlString) throws TvDbException { List<Actor> results = new ArrayList<>(); Actor actor; Document doc; NodeList nlActor; Node nActor; Element eActor; try { doc = DOMHelper.getEventDocFromUrl(urlString); if (doc == null) { return results; } } catch (WebServiceException ex) { LOG.trace(ERROR_GET_XML, ex); return results; } nlActor = doc.getElementsByTagName("Actor"); for (int loop = 0; loop < nlActor.getLength(); loop++) { nActor = nlActor.item(loop); if (nActor.getNodeType() == Node.ELEMENT_NODE) { eActor = (Element) nActor; actor = new Actor(); actor.setId(DOMHelper.getValueFromElement(eActor, "id")); String image = DOMHelper.getValueFromElement(eActor, "Image"); if (!image.isEmpty()) { actor.setImage(URL_BANNER + image); } actor.setName(DOMHelper.getValueFromElement(eActor, "Name")); actor.setRole(DOMHelper.getValueFromElement(eActor, "Role")); actor.setSortOrder(DOMHelper.getValueFromElement(eActor, "SortOrder")); results.add(actor); } } Collections.sort(results); return results; }
java
public static List<Actor> getActors(String urlString) throws TvDbException { List<Actor> results = new ArrayList<>(); Actor actor; Document doc; NodeList nlActor; Node nActor; Element eActor; try { doc = DOMHelper.getEventDocFromUrl(urlString); if (doc == null) { return results; } } catch (WebServiceException ex) { LOG.trace(ERROR_GET_XML, ex); return results; } nlActor = doc.getElementsByTagName("Actor"); for (int loop = 0; loop < nlActor.getLength(); loop++) { nActor = nlActor.item(loop); if (nActor.getNodeType() == Node.ELEMENT_NODE) { eActor = (Element) nActor; actor = new Actor(); actor.setId(DOMHelper.getValueFromElement(eActor, "id")); String image = DOMHelper.getValueFromElement(eActor, "Image"); if (!image.isEmpty()) { actor.setImage(URL_BANNER + image); } actor.setName(DOMHelper.getValueFromElement(eActor, "Name")); actor.setRole(DOMHelper.getValueFromElement(eActor, "Role")); actor.setSortOrder(DOMHelper.getValueFromElement(eActor, "SortOrder")); results.add(actor); } } Collections.sort(results); return results; }
[ "public", "static", "List", "<", "Actor", ">", "getActors", "(", "String", "urlString", ")", "throws", "TvDbException", "{", "List", "<", "Actor", ">", "results", "=", "new", "ArrayList", "<>", "(", ")", ";", "Actor", "actor", ";", "Document", "doc", ";"...
Get a list of the actors from the URL @param urlString @return @throws com.omertron.thetvdbapi.TvDbException
[ "Get", "a", "list", "of", "the", "actors", "from", "the", "URL" ]
2ff9f9580e76043f19d2fc3234d87e16a95fa485
https://github.com/Omertron/api-thetvdb/blob/2ff9f9580e76043f19d2fc3234d87e16a95fa485/src/main/java/com/omertron/thetvdbapi/tools/TvdbParser.java#L99-L142
train
Omertron/api-thetvdb
src/main/java/com/omertron/thetvdbapi/tools/TvdbParser.java
TvdbParser.getAllEpisodes
public static List<Episode> getAllEpisodes(String urlString, int season) throws TvDbException { List<Episode> episodeList = new ArrayList<>(); Episode episode; NodeList nlEpisode; Node nEpisode; Element eEpisode; Document doc = DOMHelper.getEventDocFromUrl(urlString); nlEpisode = doc.getElementsByTagName(EPISODE); for (int loop = 0; loop < nlEpisode.getLength(); loop++) { nEpisode = nlEpisode.item(loop); if (nEpisode.getNodeType() == Node.ELEMENT_NODE) { eEpisode = (Element) nEpisode; episode = parseNextEpisode(eEpisode); if ((episode != null) && (season == -1 || episode.getSeasonNumber() == season)) { // Add the episode only if the season is -1 (all seasons) or matches the season episodeList.add(episode); } } } return episodeList; }
java
public static List<Episode> getAllEpisodes(String urlString, int season) throws TvDbException { List<Episode> episodeList = new ArrayList<>(); Episode episode; NodeList nlEpisode; Node nEpisode; Element eEpisode; Document doc = DOMHelper.getEventDocFromUrl(urlString); nlEpisode = doc.getElementsByTagName(EPISODE); for (int loop = 0; loop < nlEpisode.getLength(); loop++) { nEpisode = nlEpisode.item(loop); if (nEpisode.getNodeType() == Node.ELEMENT_NODE) { eEpisode = (Element) nEpisode; episode = parseNextEpisode(eEpisode); if ((episode != null) && (season == -1 || episode.getSeasonNumber() == season)) { // Add the episode only if the season is -1 (all seasons) or matches the season episodeList.add(episode); } } } return episodeList; }
[ "public", "static", "List", "<", "Episode", ">", "getAllEpisodes", "(", "String", "urlString", ",", "int", "season", ")", "throws", "TvDbException", "{", "List", "<", "Episode", ">", "episodeList", "=", "new", "ArrayList", "<>", "(", ")", ";", "Episode", "...
Get all the episodes from the URL @param urlString @param season @return @throws com.omertron.thetvdbapi.TvDbException
[ "Get", "all", "the", "episodes", "from", "the", "URL" ]
2ff9f9580e76043f19d2fc3234d87e16a95fa485
https://github.com/Omertron/api-thetvdb/blob/2ff9f9580e76043f19d2fc3234d87e16a95fa485/src/main/java/com/omertron/thetvdbapi/tools/TvdbParser.java#L152-L174
train
Omertron/api-thetvdb
src/main/java/com/omertron/thetvdbapi/tools/TvdbParser.java
TvdbParser.getBanners
public static Banners getBanners(String urlString) throws TvDbException { Banners banners = new Banners(); Banner banner; NodeList nlBanners; Node nBanner; Element eBanner; Document doc = DOMHelper.getEventDocFromUrl(urlString); if (doc != null) { nlBanners = doc.getElementsByTagName(BANNER); for (int loop = 0; loop < nlBanners.getLength(); loop++) { nBanner = nlBanners.item(loop); if (nBanner.getNodeType() == Node.ELEMENT_NODE) { eBanner = (Element) nBanner; banner = parseNextBanner(eBanner); banners.addBanner(banner); } } } return banners; }
java
public static Banners getBanners(String urlString) throws TvDbException { Banners banners = new Banners(); Banner banner; NodeList nlBanners; Node nBanner; Element eBanner; Document doc = DOMHelper.getEventDocFromUrl(urlString); if (doc != null) { nlBanners = doc.getElementsByTagName(BANNER); for (int loop = 0; loop < nlBanners.getLength(); loop++) { nBanner = nlBanners.item(loop); if (nBanner.getNodeType() == Node.ELEMENT_NODE) { eBanner = (Element) nBanner; banner = parseNextBanner(eBanner); banners.addBanner(banner); } } } return banners; }
[ "public", "static", "Banners", "getBanners", "(", "String", "urlString", ")", "throws", "TvDbException", "{", "Banners", "banners", "=", "new", "Banners", "(", ")", ";", "Banner", "banner", ";", "NodeList", "nlBanners", ";", "Node", "nBanner", ";", "Element", ...
Get a list of banners from the URL @param urlString @return @throws com.omertron.thetvdbapi.TvDbException
[ "Get", "a", "list", "of", "banners", "from", "the", "URL" ]
2ff9f9580e76043f19d2fc3234d87e16a95fa485
https://github.com/Omertron/api-thetvdb/blob/2ff9f9580e76043f19d2fc3234d87e16a95fa485/src/main/java/com/omertron/thetvdbapi/tools/TvdbParser.java#L183-L206
train
Omertron/api-thetvdb
src/main/java/com/omertron/thetvdbapi/tools/TvdbParser.java
TvdbParser.getEpisode
public static Episode getEpisode(String urlString) throws TvDbException { Episode episode = new Episode(); NodeList nlEpisode; Node nEpisode; Element eEpisode; Document doc = DOMHelper.getEventDocFromUrl(urlString); if (doc == null) { return new Episode(); } nlEpisode = doc.getElementsByTagName(EPISODE); for (int loop = 0; loop < nlEpisode.getLength(); loop++) { nEpisode = nlEpisode.item(loop); if (nEpisode.getNodeType() == Node.ELEMENT_NODE) { eEpisode = (Element) nEpisode; episode = parseNextEpisode(eEpisode); if (episode != null) { // We only need the first episode break; } } } return episode; }
java
public static Episode getEpisode(String urlString) throws TvDbException { Episode episode = new Episode(); NodeList nlEpisode; Node nEpisode; Element eEpisode; Document doc = DOMHelper.getEventDocFromUrl(urlString); if (doc == null) { return new Episode(); } nlEpisode = doc.getElementsByTagName(EPISODE); for (int loop = 0; loop < nlEpisode.getLength(); loop++) { nEpisode = nlEpisode.item(loop); if (nEpisode.getNodeType() == Node.ELEMENT_NODE) { eEpisode = (Element) nEpisode; episode = parseNextEpisode(eEpisode); if (episode != null) { // We only need the first episode break; } } } return episode; }
[ "public", "static", "Episode", "getEpisode", "(", "String", "urlString", ")", "throws", "TvDbException", "{", "Episode", "episode", "=", "new", "Episode", "(", ")", ";", "NodeList", "nlEpisode", ";", "Node", "nEpisode", ";", "Element", "eEpisode", ";", "Docume...
Get the episode information from the URL @param urlString @return @throws com.omertron.thetvdbapi.TvDbException
[ "Get", "the", "episode", "information", "from", "the", "URL" ]
2ff9f9580e76043f19d2fc3234d87e16a95fa485
https://github.com/Omertron/api-thetvdb/blob/2ff9f9580e76043f19d2fc3234d87e16a95fa485/src/main/java/com/omertron/thetvdbapi/tools/TvdbParser.java#L215-L240
train
Omertron/api-thetvdb
src/main/java/com/omertron/thetvdbapi/tools/TvdbParser.java
TvdbParser.getSeriesList
public static List<Series> getSeriesList(String urlString) throws TvDbException { List<Series> seriesList = new ArrayList<>(); Series series; NodeList nlSeries; Node nSeries; Element eSeries; Document doc = DOMHelper.getEventDocFromUrl(urlString); if (doc == null) { return Collections.emptyList(); } nlSeries = doc.getElementsByTagName(SERIES); for (int loop = 0; loop < nlSeries.getLength(); loop++) { nSeries = nlSeries.item(loop); if (nSeries.getNodeType() == Node.ELEMENT_NODE) { eSeries = (Element) nSeries; series = parseNextSeries(eSeries); if (series != null) { seriesList.add(series); } } } return seriesList; }
java
public static List<Series> getSeriesList(String urlString) throws TvDbException { List<Series> seriesList = new ArrayList<>(); Series series; NodeList nlSeries; Node nSeries; Element eSeries; Document doc = DOMHelper.getEventDocFromUrl(urlString); if (doc == null) { return Collections.emptyList(); } nlSeries = doc.getElementsByTagName(SERIES); for (int loop = 0; loop < nlSeries.getLength(); loop++) { nSeries = nlSeries.item(loop); if (nSeries.getNodeType() == Node.ELEMENT_NODE) { eSeries = (Element) nSeries; series = parseNextSeries(eSeries); if (series != null) { seriesList.add(series); } } } return seriesList; }
[ "public", "static", "List", "<", "Series", ">", "getSeriesList", "(", "String", "urlString", ")", "throws", "TvDbException", "{", "List", "<", "Series", ">", "seriesList", "=", "new", "ArrayList", "<>", "(", ")", ";", "Series", "series", ";", "NodeList", "...
Get a list of series from the URL @param urlString @return @throws com.omertron.thetvdbapi.TvDbException
[ "Get", "a", "list", "of", "series", "from", "the", "URL" ]
2ff9f9580e76043f19d2fc3234d87e16a95fa485
https://github.com/Omertron/api-thetvdb/blob/2ff9f9580e76043f19d2fc3234d87e16a95fa485/src/main/java/com/omertron/thetvdbapi/tools/TvdbParser.java#L249-L274
train
Omertron/api-thetvdb
src/main/java/com/omertron/thetvdbapi/tools/TvdbParser.java
TvdbParser.getUpdates
public static TVDBUpdates getUpdates(String urlString, int seriesId) throws TvDbException { TVDBUpdates updates = new TVDBUpdates(); Document doc = DOMHelper.getEventDocFromUrl(urlString); if (doc != null) { Node root = doc.getChildNodes().item(0); List<SeriesUpdate> seriesUpdates = new ArrayList<>(); List<EpisodeUpdate> episodeUpdates = new ArrayList<>(); List<BannerUpdate> bannerUpdates = new ArrayList<>(); NodeList updateNodes = root.getChildNodes(); Node updateNode; for (int i = 0; i < updateNodes.getLength(); i++) { updateNode = updateNodes.item(i); switch (updateNode.getNodeName()) { case SERIES: SeriesUpdate su = parseNextSeriesUpdate((Element) updateNode); if (isValidUpdate(seriesId, su)) { seriesUpdates.add(su); } break; case EPISODE: EpisodeUpdate eu = parseNextEpisodeUpdate((Element) updateNode); if (isValidUpdate(seriesId, eu)) { episodeUpdates.add(eu); } break; case BANNER: BannerUpdate bu = parseNextBannerUpdate((Element) updateNode); if (isValidUpdate(seriesId, bu)) { bannerUpdates.add(bu); } break; default: LOG.warn("Unknown update type '{}'", updateNode.getNodeName()); } } updates.setTime(DOMHelper.getValueFromElement((Element) root, TIME)); updates.setSeriesUpdates(seriesUpdates); updates.setEpisodeUpdates(episodeUpdates); updates.setBannerUpdates(bannerUpdates); } return updates; }
java
public static TVDBUpdates getUpdates(String urlString, int seriesId) throws TvDbException { TVDBUpdates updates = new TVDBUpdates(); Document doc = DOMHelper.getEventDocFromUrl(urlString); if (doc != null) { Node root = doc.getChildNodes().item(0); List<SeriesUpdate> seriesUpdates = new ArrayList<>(); List<EpisodeUpdate> episodeUpdates = new ArrayList<>(); List<BannerUpdate> bannerUpdates = new ArrayList<>(); NodeList updateNodes = root.getChildNodes(); Node updateNode; for (int i = 0; i < updateNodes.getLength(); i++) { updateNode = updateNodes.item(i); switch (updateNode.getNodeName()) { case SERIES: SeriesUpdate su = parseNextSeriesUpdate((Element) updateNode); if (isValidUpdate(seriesId, su)) { seriesUpdates.add(su); } break; case EPISODE: EpisodeUpdate eu = parseNextEpisodeUpdate((Element) updateNode); if (isValidUpdate(seriesId, eu)) { episodeUpdates.add(eu); } break; case BANNER: BannerUpdate bu = parseNextBannerUpdate((Element) updateNode); if (isValidUpdate(seriesId, bu)) { bannerUpdates.add(bu); } break; default: LOG.warn("Unknown update type '{}'", updateNode.getNodeName()); } } updates.setTime(DOMHelper.getValueFromElement((Element) root, TIME)); updates.setSeriesUpdates(seriesUpdates); updates.setEpisodeUpdates(episodeUpdates); updates.setBannerUpdates(bannerUpdates); } return updates; }
[ "public", "static", "TVDBUpdates", "getUpdates", "(", "String", "urlString", ",", "int", "seriesId", ")", "throws", "TvDbException", "{", "TVDBUpdates", "updates", "=", "new", "TVDBUpdates", "(", ")", ";", "Document", "doc", "=", "DOMHelper", ".", "getEventDocFr...
Get a list of updates from the URL @param urlString @param seriesId @return @throws com.omertron.thetvdbapi.TvDbException
[ "Get", "a", "list", "of", "updates", "from", "the", "URL" ]
2ff9f9580e76043f19d2fc3234d87e16a95fa485
https://github.com/Omertron/api-thetvdb/blob/2ff9f9580e76043f19d2fc3234d87e16a95fa485/src/main/java/com/omertron/thetvdbapi/tools/TvdbParser.java#L284-L330
train
Omertron/api-thetvdb
src/main/java/com/omertron/thetvdbapi/tools/TvdbParser.java
TvdbParser.parseErrorMessage
public static String parseErrorMessage(String errorMessage) { StringBuilder response = new StringBuilder(); Pattern pattern = Pattern.compile(".*?/series/(\\d*?)/default/(\\d*?)/(\\d*?)/.*?"); Matcher matcher = pattern.matcher(errorMessage); // See if the error message matches the pattern and therefore we can decode it if (matcher.find() && matcher.groupCount() == ERROR_MSG_GROUP_COUNT) { int seriesId = Integer.parseInt(matcher.group(ERROR_MSG_SERIES)); int seasonId = Integer.parseInt(matcher.group(ERROR_MSG_SEASON)); int episodeId = Integer.parseInt(matcher.group(ERROR_MSG_EPISODE)); response.append("Series Id: ").append(seriesId); response.append(", Season: ").append(seasonId); response.append(", Episode: ").append(episodeId); response.append(": "); if (episodeId == 0) { // We should probably try an scrape season 0/episode 1 response.append("Episode seems to be a misnamed pilot episode."); } else if (episodeId > MAX_EPISODE) { response.append("Episode number seems to be too large."); } else if (seasonId == 0 && episodeId > 1) { response.append("This special episode does not exist."); } else if (errorMessage.toLowerCase().contains(ERROR_NOT_ALLOWED_IN_PROLOG)) { response.append(ERROR_RETRIEVE_EPISODE_INFO); } else { response.append("Unknown episode error: ").append(errorMessage); } } else // Don't recognise the error format, so just return it { if (errorMessage.toLowerCase().contains(ERROR_NOT_ALLOWED_IN_PROLOG)) { response.append(ERROR_RETRIEVE_EPISODE_INFO); } else { response.append("Episode error: ").append(errorMessage); } } return response.toString(); }
java
public static String parseErrorMessage(String errorMessage) { StringBuilder response = new StringBuilder(); Pattern pattern = Pattern.compile(".*?/series/(\\d*?)/default/(\\d*?)/(\\d*?)/.*?"); Matcher matcher = pattern.matcher(errorMessage); // See if the error message matches the pattern and therefore we can decode it if (matcher.find() && matcher.groupCount() == ERROR_MSG_GROUP_COUNT) { int seriesId = Integer.parseInt(matcher.group(ERROR_MSG_SERIES)); int seasonId = Integer.parseInt(matcher.group(ERROR_MSG_SEASON)); int episodeId = Integer.parseInt(matcher.group(ERROR_MSG_EPISODE)); response.append("Series Id: ").append(seriesId); response.append(", Season: ").append(seasonId); response.append(", Episode: ").append(episodeId); response.append(": "); if (episodeId == 0) { // We should probably try an scrape season 0/episode 1 response.append("Episode seems to be a misnamed pilot episode."); } else if (episodeId > MAX_EPISODE) { response.append("Episode number seems to be too large."); } else if (seasonId == 0 && episodeId > 1) { response.append("This special episode does not exist."); } else if (errorMessage.toLowerCase().contains(ERROR_NOT_ALLOWED_IN_PROLOG)) { response.append(ERROR_RETRIEVE_EPISODE_INFO); } else { response.append("Unknown episode error: ").append(errorMessage); } } else // Don't recognise the error format, so just return it { if (errorMessage.toLowerCase().contains(ERROR_NOT_ALLOWED_IN_PROLOG)) { response.append(ERROR_RETRIEVE_EPISODE_INFO); } else { response.append("Episode error: ").append(errorMessage); } } return response.toString(); }
[ "public", "static", "String", "parseErrorMessage", "(", "String", "errorMessage", ")", "{", "StringBuilder", "response", "=", "new", "StringBuilder", "(", ")", ";", "Pattern", "pattern", "=", "Pattern", ".", "compile", "(", "\".*?/series/(\\\\d*?)/default/(\\\\d*?)/(\...
Parse the error message to return a more user friendly message @param errorMessage @return
[ "Parse", "the", "error", "message", "to", "return", "a", "more", "user", "friendly", "message" ]
2ff9f9580e76043f19d2fc3234d87e16a95fa485
https://github.com/Omertron/api-thetvdb/blob/2ff9f9580e76043f19d2fc3234d87e16a95fa485/src/main/java/com/omertron/thetvdbapi/tools/TvdbParser.java#L374-L413
train
Omertron/api-thetvdb
src/main/java/com/omertron/thetvdbapi/tools/TvdbParser.java
TvdbParser.parseList
private static List<String> parseList(String input, String delim) { List<String> result = new ArrayList<>(); StringTokenizer st = new StringTokenizer(input, delim); while (st.hasMoreTokens()) { String token = st.nextToken().trim(); if (token.length() > 0) { result.add(token); } } return result; }
java
private static List<String> parseList(String input, String delim) { List<String> result = new ArrayList<>(); StringTokenizer st = new StringTokenizer(input, delim); while (st.hasMoreTokens()) { String token = st.nextToken().trim(); if (token.length() > 0) { result.add(token); } } return result; }
[ "private", "static", "List", "<", "String", ">", "parseList", "(", "String", "input", ",", "String", "delim", ")", "{", "List", "<", "String", ">", "result", "=", "new", "ArrayList", "<>", "(", ")", ";", "StringTokenizer", "st", "=", "new", "StringTokeni...
Create a List from a delimited string @param input @param delim
[ "Create", "a", "List", "from", "a", "delimited", "string" ]
2ff9f9580e76043f19d2fc3234d87e16a95fa485
https://github.com/Omertron/api-thetvdb/blob/2ff9f9580e76043f19d2fc3234d87e16a95fa485/src/main/java/com/omertron/thetvdbapi/tools/TvdbParser.java#L421-L433
train
Omertron/api-thetvdb
src/main/java/com/omertron/thetvdbapi/tools/TvdbParser.java
TvdbParser.parseNextBanner
private static Banner parseNextBanner(Element eBanner) { Banner banner = new Banner(); String artwork; artwork = DOMHelper.getValueFromElement(eBanner, BANNER_PATH); if (!artwork.isEmpty()) { banner.setUrl(URL_BANNER + artwork); } artwork = DOMHelper.getValueFromElement(eBanner, VIGNETTE_PATH); if (!artwork.isEmpty()) { banner.setVignette(URL_BANNER + artwork); } artwork = DOMHelper.getValueFromElement(eBanner, THUMBNAIL_PATH); if (!artwork.isEmpty()) { banner.setThumb(URL_BANNER + artwork); } banner.setId(DOMHelper.getValueFromElement(eBanner, "id")); banner.setBannerType(BannerListType.fromString(DOMHelper.getValueFromElement(eBanner, "BannerType"))); banner.setBannerType2(BannerType.fromString(DOMHelper.getValueFromElement(eBanner, "BannerType2"))); banner.setLanguage(DOMHelper.getValueFromElement(eBanner, LANGUAGE)); banner.setSeason(DOMHelper.getValueFromElement(eBanner, "Season")); banner.setColours(DOMHelper.getValueFromElement(eBanner, "Colors")); banner.setRating(DOMHelper.getValueFromElement(eBanner, RATING)); banner.setRatingCount(DOMHelper.getValueFromElement(eBanner, "RatingCount")); try { banner.setSeriesName(Boolean.parseBoolean(DOMHelper.getValueFromElement(eBanner, SERIES_NAME))); } catch (WebServiceException ex) { LOG.trace("Failed to transform SeriesName to boolean", ex); banner.setSeriesName(false); } return banner; }
java
private static Banner parseNextBanner(Element eBanner) { Banner banner = new Banner(); String artwork; artwork = DOMHelper.getValueFromElement(eBanner, BANNER_PATH); if (!artwork.isEmpty()) { banner.setUrl(URL_BANNER + artwork); } artwork = DOMHelper.getValueFromElement(eBanner, VIGNETTE_PATH); if (!artwork.isEmpty()) { banner.setVignette(URL_BANNER + artwork); } artwork = DOMHelper.getValueFromElement(eBanner, THUMBNAIL_PATH); if (!artwork.isEmpty()) { banner.setThumb(URL_BANNER + artwork); } banner.setId(DOMHelper.getValueFromElement(eBanner, "id")); banner.setBannerType(BannerListType.fromString(DOMHelper.getValueFromElement(eBanner, "BannerType"))); banner.setBannerType2(BannerType.fromString(DOMHelper.getValueFromElement(eBanner, "BannerType2"))); banner.setLanguage(DOMHelper.getValueFromElement(eBanner, LANGUAGE)); banner.setSeason(DOMHelper.getValueFromElement(eBanner, "Season")); banner.setColours(DOMHelper.getValueFromElement(eBanner, "Colors")); banner.setRating(DOMHelper.getValueFromElement(eBanner, RATING)); banner.setRatingCount(DOMHelper.getValueFromElement(eBanner, "RatingCount")); try { banner.setSeriesName(Boolean.parseBoolean(DOMHelper.getValueFromElement(eBanner, SERIES_NAME))); } catch (WebServiceException ex) { LOG.trace("Failed to transform SeriesName to boolean", ex); banner.setSeriesName(false); } return banner; }
[ "private", "static", "Banner", "parseNextBanner", "(", "Element", "eBanner", ")", "{", "Banner", "banner", "=", "new", "Banner", "(", ")", ";", "String", "artwork", ";", "artwork", "=", "DOMHelper", ".", "getValueFromElement", "(", "eBanner", ",", "BANNER_PATH...
Parse the banner record from the document @param eBanner @throws Throwable
[ "Parse", "the", "banner", "record", "from", "the", "document" ]
2ff9f9580e76043f19d2fc3234d87e16a95fa485
https://github.com/Omertron/api-thetvdb/blob/2ff9f9580e76043f19d2fc3234d87e16a95fa485/src/main/java/com/omertron/thetvdbapi/tools/TvdbParser.java#L441-L477
train
Omertron/api-thetvdb
src/main/java/com/omertron/thetvdbapi/tools/TvdbParser.java
TvdbParser.parseNextEpisode
private static Episode parseNextEpisode(Element eEpisode) { Episode episode = new Episode(); episode.setId(DOMHelper.getValueFromElement(eEpisode, "id")); episode.setCombinedEpisodeNumber(DOMHelper.getValueFromElement(eEpisode, "Combined_episodenumber")); episode.setCombinedSeason(DOMHelper.getValueFromElement(eEpisode, "Combined_season")); episode.setDvdChapter(DOMHelper.getValueFromElement(eEpisode, "DVD_chapter")); episode.setDvdDiscId(DOMHelper.getValueFromElement(eEpisode, "DVD_discid")); episode.setDvdEpisodeNumber(DOMHelper.getValueFromElement(eEpisode, "DVD_episodenumber")); episode.setDvdSeason(DOMHelper.getValueFromElement(eEpisode, "DVD_season")); episode.setDirectors(parseList(DOMHelper.getValueFromElement(eEpisode, "Director"), "|,")); episode.setEpImgFlag(DOMHelper.getValueFromElement(eEpisode, "EpImgFlag")); episode.setEpisodeName(DOMHelper.getValueFromElement(eEpisode, "EpisodeName")); episode.setEpisodeNumber(getEpisodeValue(eEpisode, "EpisodeNumber")); episode.setFirstAired(DOMHelper.getValueFromElement(eEpisode, FIRST_AIRED)); episode.setGuestStars(parseList(DOMHelper.getValueFromElement(eEpisode, "GuestStars"), "|,")); episode.setImdbId(DOMHelper.getValueFromElement(eEpisode, IMDB_ID)); episode.setLanguage(DOMHelper.getValueFromElement(eEpisode, LANGUAGE)); episode.setOverview(DOMHelper.getValueFromElement(eEpisode, OVERVIEW)); episode.setProductionCode(DOMHelper.getValueFromElement(eEpisode, "ProductionCode")); episode.setRating(DOMHelper.getValueFromElement(eEpisode, RATING)); episode.setSeasonNumber(getEpisodeValue(eEpisode, "SeasonNumber")); episode.setWriters(parseList(DOMHelper.getValueFromElement(eEpisode, "Writer"), "|,")); episode.setAbsoluteNumber(DOMHelper.getValueFromElement(eEpisode, "absolute_number")); String filename = DOMHelper.getValueFromElement(eEpisode, "filename"); if (StringUtils.isNotBlank(filename)) { episode.setFilename(URL_BANNER + filename); } episode.setLastUpdated(DOMHelper.getValueFromElement(eEpisode, LAST_UPDATED)); episode.setSeasonId(DOMHelper.getValueFromElement(eEpisode, "seasonid")); episode.setSeriesId(DOMHelper.getValueFromElement(eEpisode, "seriesid")); episode.setAirsAfterSeason(getEpisodeValue(eEpisode, "airsafter_season")); episode.setAirsBeforeEpisode(getEpisodeValue(eEpisode, "airsbefore_episode")); episode.setAirsBeforeSeason(getEpisodeValue(eEpisode, "airsbefore_season")); return episode; }
java
private static Episode parseNextEpisode(Element eEpisode) { Episode episode = new Episode(); episode.setId(DOMHelper.getValueFromElement(eEpisode, "id")); episode.setCombinedEpisodeNumber(DOMHelper.getValueFromElement(eEpisode, "Combined_episodenumber")); episode.setCombinedSeason(DOMHelper.getValueFromElement(eEpisode, "Combined_season")); episode.setDvdChapter(DOMHelper.getValueFromElement(eEpisode, "DVD_chapter")); episode.setDvdDiscId(DOMHelper.getValueFromElement(eEpisode, "DVD_discid")); episode.setDvdEpisodeNumber(DOMHelper.getValueFromElement(eEpisode, "DVD_episodenumber")); episode.setDvdSeason(DOMHelper.getValueFromElement(eEpisode, "DVD_season")); episode.setDirectors(parseList(DOMHelper.getValueFromElement(eEpisode, "Director"), "|,")); episode.setEpImgFlag(DOMHelper.getValueFromElement(eEpisode, "EpImgFlag")); episode.setEpisodeName(DOMHelper.getValueFromElement(eEpisode, "EpisodeName")); episode.setEpisodeNumber(getEpisodeValue(eEpisode, "EpisodeNumber")); episode.setFirstAired(DOMHelper.getValueFromElement(eEpisode, FIRST_AIRED)); episode.setGuestStars(parseList(DOMHelper.getValueFromElement(eEpisode, "GuestStars"), "|,")); episode.setImdbId(DOMHelper.getValueFromElement(eEpisode, IMDB_ID)); episode.setLanguage(DOMHelper.getValueFromElement(eEpisode, LANGUAGE)); episode.setOverview(DOMHelper.getValueFromElement(eEpisode, OVERVIEW)); episode.setProductionCode(DOMHelper.getValueFromElement(eEpisode, "ProductionCode")); episode.setRating(DOMHelper.getValueFromElement(eEpisode, RATING)); episode.setSeasonNumber(getEpisodeValue(eEpisode, "SeasonNumber")); episode.setWriters(parseList(DOMHelper.getValueFromElement(eEpisode, "Writer"), "|,")); episode.setAbsoluteNumber(DOMHelper.getValueFromElement(eEpisode, "absolute_number")); String filename = DOMHelper.getValueFromElement(eEpisode, "filename"); if (StringUtils.isNotBlank(filename)) { episode.setFilename(URL_BANNER + filename); } episode.setLastUpdated(DOMHelper.getValueFromElement(eEpisode, LAST_UPDATED)); episode.setSeasonId(DOMHelper.getValueFromElement(eEpisode, "seasonid")); episode.setSeriesId(DOMHelper.getValueFromElement(eEpisode, "seriesid")); episode.setAirsAfterSeason(getEpisodeValue(eEpisode, "airsafter_season")); episode.setAirsBeforeEpisode(getEpisodeValue(eEpisode, "airsbefore_episode")); episode.setAirsBeforeSeason(getEpisodeValue(eEpisode, "airsbefore_season")); return episode; }
[ "private", "static", "Episode", "parseNextEpisode", "(", "Element", "eEpisode", ")", "{", "Episode", "episode", "=", "new", "Episode", "(", ")", ";", "episode", ".", "setId", "(", "DOMHelper", ".", "getValueFromElement", "(", "eEpisode", ",", "\"id\"", ")", ...
Parse the document for episode information @param doc @throws Throwable
[ "Parse", "the", "document", "for", "episode", "information" ]
2ff9f9580e76043f19d2fc3234d87e16a95fa485
https://github.com/Omertron/api-thetvdb/blob/2ff9f9580e76043f19d2fc3234d87e16a95fa485/src/main/java/com/omertron/thetvdbapi/tools/TvdbParser.java#L485-L525
train
Omertron/api-thetvdb
src/main/java/com/omertron/thetvdbapi/tools/TvdbParser.java
TvdbParser.getEpisodeValue
private static int getEpisodeValue(Element eEpisode, String key) { int episodeValue; try { String value = DOMHelper.getValueFromElement(eEpisode, key); episodeValue = NumberUtils.toInt(value, 0); } catch (WebServiceException ex) { LOG.trace("Failed to read episode value", ex); episodeValue = 0; } return episodeValue; }
java
private static int getEpisodeValue(Element eEpisode, String key) { int episodeValue; try { String value = DOMHelper.getValueFromElement(eEpisode, key); episodeValue = NumberUtils.toInt(value, 0); } catch (WebServiceException ex) { LOG.trace("Failed to read episode value", ex); episodeValue = 0; } return episodeValue; }
[ "private", "static", "int", "getEpisodeValue", "(", "Element", "eEpisode", ",", "String", "key", ")", "{", "int", "episodeValue", ";", "try", "{", "String", "value", "=", "DOMHelper", ".", "getValueFromElement", "(", "eEpisode", ",", "key", ")", ";", "episod...
Process the "key" from the element into an integer. @param eEpisode @param key @return the value, 0 if not found or an error.
[ "Process", "the", "key", "from", "the", "element", "into", "an", "integer", "." ]
2ff9f9580e76043f19d2fc3234d87e16a95fa485
https://github.com/Omertron/api-thetvdb/blob/2ff9f9580e76043f19d2fc3234d87e16a95fa485/src/main/java/com/omertron/thetvdbapi/tools/TvdbParser.java#L534-L545
train
Omertron/api-thetvdb
src/main/java/com/omertron/thetvdbapi/tools/TvdbParser.java
TvdbParser.parseNextSeries
private static Series parseNextSeries(Element eSeries) { Series series = new Series(); series.setId(DOMHelper.getValueFromElement(eSeries, "id")); series.setActors(parseList(DOMHelper.getValueFromElement(eSeries, "Actors"), "|,")); series.setAirsDayOfWeek(DOMHelper.getValueFromElement(eSeries, "Airs_DayOfWeek")); series.setAirsTime(DOMHelper.getValueFromElement(eSeries, "Airs_Time")); series.setContentRating(DOMHelper.getValueFromElement(eSeries, "ContentRating")); series.setFirstAired(DOMHelper.getValueFromElement(eSeries, FIRST_AIRED)); series.setGenres(parseList(DOMHelper.getValueFromElement(eSeries, "Genre"), "|,")); series.setImdbId(DOMHelper.getValueFromElement(eSeries, IMDB_ID)); series.setLanguage(DOMHelper.getValueFromElement(eSeries, "language")); series.setNetwork(DOMHelper.getValueFromElement(eSeries, "Network")); series.setOverview(DOMHelper.getValueFromElement(eSeries, OVERVIEW)); series.setRating(DOMHelper.getValueFromElement(eSeries, RATING)); series.setRuntime(DOMHelper.getValueFromElement(eSeries, "Runtime")); series.setSeriesId(DOMHelper.getValueFromElement(eSeries, "SeriesID")); series.setSeriesName(DOMHelper.getValueFromElement(eSeries, SERIES_NAME)); series.setStatus(DOMHelper.getValueFromElement(eSeries, "Status")); String artwork = DOMHelper.getValueFromElement(eSeries, TYPE_BANNER); if (!artwork.isEmpty()) { series.setBanner(URL_BANNER + artwork); } artwork = DOMHelper.getValueFromElement(eSeries, TYPE_FANART); if (!artwork.isEmpty()) { series.setFanart(URL_BANNER + artwork); } artwork = DOMHelper.getValueFromElement(eSeries, TYPE_POSTER); if (!artwork.isEmpty()) { series.setPoster(URL_BANNER + artwork); } series.setLastUpdated(DOMHelper.getValueFromElement(eSeries, LAST_UPDATED)); series.setZap2ItId(DOMHelper.getValueFromElement(eSeries, "zap2it_id")); return series; }
java
private static Series parseNextSeries(Element eSeries) { Series series = new Series(); series.setId(DOMHelper.getValueFromElement(eSeries, "id")); series.setActors(parseList(DOMHelper.getValueFromElement(eSeries, "Actors"), "|,")); series.setAirsDayOfWeek(DOMHelper.getValueFromElement(eSeries, "Airs_DayOfWeek")); series.setAirsTime(DOMHelper.getValueFromElement(eSeries, "Airs_Time")); series.setContentRating(DOMHelper.getValueFromElement(eSeries, "ContentRating")); series.setFirstAired(DOMHelper.getValueFromElement(eSeries, FIRST_AIRED)); series.setGenres(parseList(DOMHelper.getValueFromElement(eSeries, "Genre"), "|,")); series.setImdbId(DOMHelper.getValueFromElement(eSeries, IMDB_ID)); series.setLanguage(DOMHelper.getValueFromElement(eSeries, "language")); series.setNetwork(DOMHelper.getValueFromElement(eSeries, "Network")); series.setOverview(DOMHelper.getValueFromElement(eSeries, OVERVIEW)); series.setRating(DOMHelper.getValueFromElement(eSeries, RATING)); series.setRuntime(DOMHelper.getValueFromElement(eSeries, "Runtime")); series.setSeriesId(DOMHelper.getValueFromElement(eSeries, "SeriesID")); series.setSeriesName(DOMHelper.getValueFromElement(eSeries, SERIES_NAME)); series.setStatus(DOMHelper.getValueFromElement(eSeries, "Status")); String artwork = DOMHelper.getValueFromElement(eSeries, TYPE_BANNER); if (!artwork.isEmpty()) { series.setBanner(URL_BANNER + artwork); } artwork = DOMHelper.getValueFromElement(eSeries, TYPE_FANART); if (!artwork.isEmpty()) { series.setFanart(URL_BANNER + artwork); } artwork = DOMHelper.getValueFromElement(eSeries, TYPE_POSTER); if (!artwork.isEmpty()) { series.setPoster(URL_BANNER + artwork); } series.setLastUpdated(DOMHelper.getValueFromElement(eSeries, LAST_UPDATED)); series.setZap2ItId(DOMHelper.getValueFromElement(eSeries, "zap2it_id")); return series; }
[ "private", "static", "Series", "parseNextSeries", "(", "Element", "eSeries", ")", "{", "Series", "series", "=", "new", "Series", "(", ")", ";", "series", ".", "setId", "(", "DOMHelper", ".", "getValueFromElement", "(", "eSeries", ",", "\"id\"", ")", ")", "...
Parse the series record from the document @param eSeries @throws Throwable
[ "Parse", "the", "series", "record", "from", "the", "document" ]
2ff9f9580e76043f19d2fc3234d87e16a95fa485
https://github.com/Omertron/api-thetvdb/blob/2ff9f9580e76043f19d2fc3234d87e16a95fa485/src/main/java/com/omertron/thetvdbapi/tools/TvdbParser.java#L553-L592
train
Omertron/api-thetvdb
src/main/java/com/omertron/thetvdbapi/tools/TvdbParser.java
TvdbParser.parseNextSeriesUpdate
private static SeriesUpdate parseNextSeriesUpdate(Element element) { SeriesUpdate seriesUpdate = new SeriesUpdate(); seriesUpdate.setSeriesId(DOMHelper.getValueFromElement(element, "id")); seriesUpdate.setTime(DOMHelper.getValueFromElement(element, TIME)); return seriesUpdate; }
java
private static SeriesUpdate parseNextSeriesUpdate(Element element) { SeriesUpdate seriesUpdate = new SeriesUpdate(); seriesUpdate.setSeriesId(DOMHelper.getValueFromElement(element, "id")); seriesUpdate.setTime(DOMHelper.getValueFromElement(element, TIME)); return seriesUpdate; }
[ "private", "static", "SeriesUpdate", "parseNextSeriesUpdate", "(", "Element", "element", ")", "{", "SeriesUpdate", "seriesUpdate", "=", "new", "SeriesUpdate", "(", ")", ";", "seriesUpdate", ".", "setSeriesId", "(", "DOMHelper", ".", "getValueFromElement", "(", "elem...
Parse the series update record from the document @param element
[ "Parse", "the", "series", "update", "record", "from", "the", "document" ]
2ff9f9580e76043f19d2fc3234d87e16a95fa485
https://github.com/Omertron/api-thetvdb/blob/2ff9f9580e76043f19d2fc3234d87e16a95fa485/src/main/java/com/omertron/thetvdbapi/tools/TvdbParser.java#L599-L606
train
Omertron/api-thetvdb
src/main/java/com/omertron/thetvdbapi/tools/TvdbParser.java
TvdbParser.parseNextEpisodeUpdate
private static EpisodeUpdate parseNextEpisodeUpdate(Element element) { EpisodeUpdate episodeUpdate = new EpisodeUpdate(); episodeUpdate.setSeriesId(DOMHelper.getValueFromElement(element, "id")); episodeUpdate.setEpisodeId(DOMHelper.getValueFromElement(element, SERIES)); episodeUpdate.setTime(DOMHelper.getValueFromElement(element, TIME)); return episodeUpdate; }
java
private static EpisodeUpdate parseNextEpisodeUpdate(Element element) { EpisodeUpdate episodeUpdate = new EpisodeUpdate(); episodeUpdate.setSeriesId(DOMHelper.getValueFromElement(element, "id")); episodeUpdate.setEpisodeId(DOMHelper.getValueFromElement(element, SERIES)); episodeUpdate.setTime(DOMHelper.getValueFromElement(element, TIME)); return episodeUpdate; }
[ "private", "static", "EpisodeUpdate", "parseNextEpisodeUpdate", "(", "Element", "element", ")", "{", "EpisodeUpdate", "episodeUpdate", "=", "new", "EpisodeUpdate", "(", ")", ";", "episodeUpdate", ".", "setSeriesId", "(", "DOMHelper", ".", "getValueFromElement", "(", ...
Parse the episode update record from the document @param element
[ "Parse", "the", "episode", "update", "record", "from", "the", "document" ]
2ff9f9580e76043f19d2fc3234d87e16a95fa485
https://github.com/Omertron/api-thetvdb/blob/2ff9f9580e76043f19d2fc3234d87e16a95fa485/src/main/java/com/omertron/thetvdbapi/tools/TvdbParser.java#L613-L621
train
Omertron/api-thetvdb
src/main/java/com/omertron/thetvdbapi/tools/TvdbParser.java
TvdbParser.parseNextBannerUpdate
private static BannerUpdate parseNextBannerUpdate(Element element) { BannerUpdate bannerUpdate = new BannerUpdate(); bannerUpdate.setSeasonNum(DOMHelper.getValueFromElement(element, "SeasonNum")); bannerUpdate.setSeriesId(DOMHelper.getValueFromElement(element, SERIES)); bannerUpdate.setFormat(DOMHelper.getValueFromElement(element, "format")); bannerUpdate.setLanguage(DOMHelper.getValueFromElement(element, "language")); bannerUpdate.setPath(DOMHelper.getValueFromElement(element, "path")); bannerUpdate.setTime(DOMHelper.getValueFromElement(element, TIME)); bannerUpdate.setType(DOMHelper.getValueFromElement(element, "type")); return bannerUpdate; }
java
private static BannerUpdate parseNextBannerUpdate(Element element) { BannerUpdate bannerUpdate = new BannerUpdate(); bannerUpdate.setSeasonNum(DOMHelper.getValueFromElement(element, "SeasonNum")); bannerUpdate.setSeriesId(DOMHelper.getValueFromElement(element, SERIES)); bannerUpdate.setFormat(DOMHelper.getValueFromElement(element, "format")); bannerUpdate.setLanguage(DOMHelper.getValueFromElement(element, "language")); bannerUpdate.setPath(DOMHelper.getValueFromElement(element, "path")); bannerUpdate.setTime(DOMHelper.getValueFromElement(element, TIME)); bannerUpdate.setType(DOMHelper.getValueFromElement(element, "type")); return bannerUpdate; }
[ "private", "static", "BannerUpdate", "parseNextBannerUpdate", "(", "Element", "element", ")", "{", "BannerUpdate", "bannerUpdate", "=", "new", "BannerUpdate", "(", ")", ";", "bannerUpdate", ".", "setSeasonNum", "(", "DOMHelper", ".", "getValueFromElement", "(", "ele...
Parse the banner update record from the document @param element
[ "Parse", "the", "banner", "update", "record", "from", "the", "document" ]
2ff9f9580e76043f19d2fc3234d87e16a95fa485
https://github.com/Omertron/api-thetvdb/blob/2ff9f9580e76043f19d2fc3234d87e16a95fa485/src/main/java/com/omertron/thetvdbapi/tools/TvdbParser.java#L628-L640
train
Omertron/api-thetvdb
src/main/java/com/omertron/thetvdbapi/tools/TvdbParser.java
TvdbParser.parseNextLanguage
private static Language parseNextLanguage(Element element) { Language language = new Language(); language.setName(DOMHelper.getValueFromElement(element, "name")); language.setAbbreviation(DOMHelper.getValueFromElement(element, "abbreviation")); language.setId(DOMHelper.getValueFromElement(element, "id")); return language; }
java
private static Language parseNextLanguage(Element element) { Language language = new Language(); language.setName(DOMHelper.getValueFromElement(element, "name")); language.setAbbreviation(DOMHelper.getValueFromElement(element, "abbreviation")); language.setId(DOMHelper.getValueFromElement(element, "id")); return language; }
[ "private", "static", "Language", "parseNextLanguage", "(", "Element", "element", ")", "{", "Language", "language", "=", "new", "Language", "(", ")", ";", "language", ".", "setName", "(", "DOMHelper", ".", "getValueFromElement", "(", "element", ",", "\"name\"", ...
Parses the next language. @param element the element @return the language
[ "Parses", "the", "next", "language", "." ]
2ff9f9580e76043f19d2fc3234d87e16a95fa485
https://github.com/Omertron/api-thetvdb/blob/2ff9f9580e76043f19d2fc3234d87e16a95fa485/src/main/java/com/omertron/thetvdbapi/tools/TvdbParser.java#L648-L656
train
houbie/lesscss
src/main/java/com/github/houbie/lesscss/resourcereader/FileSystemResourceReader.java
FileSystemResourceReader.copyBaseDirs
private void copyBaseDirs(File[] baseDirs) { this.baseDirs = new File[baseDirs.length]; for (int i = 0; i < baseDirs.length; i++) { this.baseDirs[i] = baseDirs[i].getAbsoluteFile(); } }
java
private void copyBaseDirs(File[] baseDirs) { this.baseDirs = new File[baseDirs.length]; for (int i = 0; i < baseDirs.length; i++) { this.baseDirs[i] = baseDirs[i].getAbsoluteFile(); } }
[ "private", "void", "copyBaseDirs", "(", "File", "[", "]", "baseDirs", ")", "{", "this", ".", "baseDirs", "=", "new", "File", "[", "baseDirs", ".", "length", "]", ";", "for", "(", "int", "i", "=", "0", ";", "i", "<", "baseDirs", ".", "length", ";", ...
Convert the dirs to absolute paths to prevent that equals returns true for directories with the same name in a different location. @param baseDirs the directories that are used to resolve resources
[ "Convert", "the", "dirs", "to", "absolute", "paths", "to", "prevent", "that", "equals", "returns", "true", "for", "directories", "with", "the", "same", "name", "in", "a", "different", "location", "." ]
65196738939263d767e7933f34322536a0c7090f
https://github.com/houbie/lesscss/blob/65196738939263d767e7933f34322536a0c7090f/src/main/java/com/github/houbie/lesscss/resourcereader/FileSystemResourceReader.java#L82-L87
train
knowitall/openregex
src/main/java/edu/washington/cs/knowitall/regex/Match.java
Match.group
public Group<E> group(String name) { for (Group<E> group : this.groups()) { if (group.expr instanceof Expression.NamedGroup<?>) { Expression.NamedGroup<E> namedGroup = (Expression.NamedGroup<E>) group.expr; if (namedGroup.name.equals(name)) { return group; } } } return null; }
java
public Group<E> group(String name) { for (Group<E> group : this.groups()) { if (group.expr instanceof Expression.NamedGroup<?>) { Expression.NamedGroup<E> namedGroup = (Expression.NamedGroup<E>) group.expr; if (namedGroup.name.equals(name)) { return group; } } } return null; }
[ "public", "Group", "<", "E", ">", "group", "(", "String", "name", ")", "{", "for", "(", "Group", "<", "E", ">", "group", ":", "this", ".", "groups", "(", ")", ")", "{", "if", "(", "group", ".", "expr", "instanceof", "Expression", ".", "NamedGroup",...
Retrieve a group by name. @param name the name of the group to retrieve. @return the associated group.
[ "Retrieve", "a", "group", "by", "name", "." ]
6dffbcac884b5bd17f9feb7a3107052163f0497d
https://github.com/knowitall/openregex/blob/6dffbcac884b5bd17f9feb7a3107052163f0497d/src/main/java/edu/washington/cs/knowitall/regex/Match.java#L124-L135
train
lestard/assertj-javafx
src/main/java/eu/lestard/assertj/javafx/api/BindingAssert.java
BindingAssert.hasSameValue
public BindingAssert<T> hasSameValue(ObservableValue<T> expectedValue) { new ObservableValueAssertions<>(actual).hasSameValue(expectedValue); return this; }
java
public BindingAssert<T> hasSameValue(ObservableValue<T> expectedValue) { new ObservableValueAssertions<>(actual).hasSameValue(expectedValue); return this; }
[ "public", "BindingAssert", "<", "T", ">", "hasSameValue", "(", "ObservableValue", "<", "T", ">", "expectedValue", ")", "{", "new", "ObservableValueAssertions", "<>", "(", "actual", ")", ".", "hasSameValue", "(", "expectedValue", ")", ";", "return", "this", ";"...
Verifies that the actual binding has the same value as the given observable. @param expectedValue the observable value to compare with the actual bindings current value. @return {@code this} assertion instance.
[ "Verifies", "that", "the", "actual", "binding", "has", "the", "same", "value", "as", "the", "given", "observable", "." ]
f6b4d22e542a5501c7c1c2fae8700b0f69b956c1
https://github.com/lestard/assertj-javafx/blob/f6b4d22e542a5501c7c1c2fae8700b0f69b956c1/src/main/java/eu/lestard/assertj/javafx/api/BindingAssert.java#L75-L78
train
houbie/lesscss
src/main/java/com/github/houbie/lesscss/engine/LessCompilationEngineFactory.java
LessCompilationEngineFactory.create
public static LessCompilationEngine create(String type, String executable) { if (type == null || RHINO.equals(type)) { return create(); } if (COMMAND_LINE.equals(type)) { return new CommandLineLesscCompilationEngine(executable); } return new ScriptEngineLessCompilationEngine(type); }
java
public static LessCompilationEngine create(String type, String executable) { if (type == null || RHINO.equals(type)) { return create(); } if (COMMAND_LINE.equals(type)) { return new CommandLineLesscCompilationEngine(executable); } return new ScriptEngineLessCompilationEngine(type); }
[ "public", "static", "LessCompilationEngine", "create", "(", "String", "type", ",", "String", "executable", ")", "{", "if", "(", "type", "==", "null", "||", "RHINO", ".", "equals", "(", "type", ")", ")", "{", "return", "create", "(", ")", ";", "}", "if"...
Create a new engine of the specified type if available, or a default engine. @param type The engine type. "rhino", "nashorn" and "commandline" are supported out of the box. @param executable The executable in case of commandline engine @return A new RhinoLessCompilationEngine
[ "Create", "a", "new", "engine", "of", "the", "specified", "type", "if", "available", "or", "a", "default", "engine", "." ]
65196738939263d767e7933f34322536a0c7090f
https://github.com/houbie/lesscss/blob/65196738939263d767e7933f34322536a0c7090f/src/main/java/com/github/houbie/lesscss/engine/LessCompilationEngineFactory.java#L44-L53
train
houbie/lesscss
src/main/java/com/github/houbie/lesscss/utils/LogbackConfigurator.java
LogbackConfigurator.configure
public static void configure(boolean verbose, boolean daemon) { LoggerContext lc = (LoggerContext) LoggerFactory.getILoggerFactory(); ConsoleAppender<ILoggingEvent> ca = new ConsoleAppender<ILoggingEvent>(); ca.setContext(lc); ca.setName("less console"); PatternLayoutEncoder pl = new PatternLayoutEncoder(); pl.setContext(lc); pl.setPattern("%msg%n"); pl.start(); ca.setEncoder(pl); ca.start(); //prevent double log output lc.getLogger(Logger.ROOT_LOGGER_NAME).detachAndStopAllAppenders(); configureCompilerLogger(verbose, lc, ca); configureCompilationTaskLogger(daemon, lc, ca); configureLessCompilationEngineLogger(verbose, lc, ca); }
java
public static void configure(boolean verbose, boolean daemon) { LoggerContext lc = (LoggerContext) LoggerFactory.getILoggerFactory(); ConsoleAppender<ILoggingEvent> ca = new ConsoleAppender<ILoggingEvent>(); ca.setContext(lc); ca.setName("less console"); PatternLayoutEncoder pl = new PatternLayoutEncoder(); pl.setContext(lc); pl.setPattern("%msg%n"); pl.start(); ca.setEncoder(pl); ca.start(); //prevent double log output lc.getLogger(Logger.ROOT_LOGGER_NAME).detachAndStopAllAppenders(); configureCompilerLogger(verbose, lc, ca); configureCompilationTaskLogger(daemon, lc, ca); configureLessCompilationEngineLogger(verbose, lc, ca); }
[ "public", "static", "void", "configure", "(", "boolean", "verbose", ",", "boolean", "daemon", ")", "{", "LoggerContext", "lc", "=", "(", "LoggerContext", ")", "LoggerFactory", ".", "getILoggerFactory", "(", ")", ";", "ConsoleAppender", "<", "ILoggingEvent", ">",...
Configure the LessCompilerImpl logger with a ConsoleAppender @param verbose set logger level to Level.ALL if true, otherwise Level.OFF @param daemon set the level of the compilationTaskLogger to Level.INFO if true, otherwise Level.OFF
[ "Configure", "the", "LessCompilerImpl", "logger", "with", "a", "ConsoleAppender" ]
65196738939263d767e7933f34322536a0c7090f
https://github.com/houbie/lesscss/blob/65196738939263d767e7933f34322536a0c7090f/src/main/java/com/github/houbie/lesscss/utils/LogbackConfigurator.java#L44-L62
train
knowitall/openregex
src/main/java/edu/washington/cs/knowitall/regex/RegularExpression.java
RegularExpression.build
public static <E> Automaton<E> build(List<Expression<E>> exprs) { Expression.MatchingGroup<E> group = new Expression.MatchingGroup<E>(exprs); return group.build(); }
java
public static <E> Automaton<E> build(List<Expression<E>> exprs) { Expression.MatchingGroup<E> group = new Expression.MatchingGroup<E>(exprs); return group.build(); }
[ "public", "static", "<", "E", ">", "Automaton", "<", "E", ">", "build", "(", "List", "<", "Expression", "<", "E", ">", ">", "exprs", ")", "{", "Expression", ".", "MatchingGroup", "<", "E", ">", "group", "=", "new", "Expression", ".", "MatchingGroup", ...
Build an NFA from the list of expressions. @param exprs @return
[ "Build", "an", "NFA", "from", "the", "list", "of", "expressions", "." ]
6dffbcac884b5bd17f9feb7a3107052163f0497d
https://github.com/knowitall/openregex/blob/6dffbcac884b5bd17f9feb7a3107052163f0497d/src/main/java/edu/washington/cs/knowitall/regex/RegularExpression.java#L88-L91
train