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.s...
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.s...
[ "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); } ...
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); } ...
[ "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(Cale...
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(Cale...
[ "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...
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...
[ "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); c...
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); c...
[ "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(Cal...
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(Cal...
[ "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); ...
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); ...
[ "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, ...
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, ...
[ "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); ...
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); ...
[ "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); ...
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); ...
[ "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()...
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()...
[ "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 =...
java
public void setTrigger (AbstractButton trigger, Icon collapsed, Icon uncollapsed) { _trigger = trigger; _trigger.setHorizontalAlignment(SwingConstants.LEFT); _trigger.setHorizontalTextPosition(SwingConstants.RIGHT); _downIcon = collapsed; _upIcon =...
[ "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++) { ...
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++) { ...
[ "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 < l...
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 < l...
[ "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]; ...
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]; ...
[ "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 * ev...
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 * ev...
[ "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); Swi...
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); Swi...
[ "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.i...
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.i...
[ "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 ...
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 ...
[ "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 ...
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 ...
[ "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 (...
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 (...
[ "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); ...
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); ...
[ "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) { ...
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) { ...
[ "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 + f...
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 + f...
[ "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....
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....
[ "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)); ...
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)); ...
[ "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 Fir...
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 Fir...
[ "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 ...
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 ...
[ "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++) { Ba...
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++) { Ba...
[ "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...
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...
[ "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());...
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());...
[ "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 (tagElem...
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 (tagElem...
[ "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); ...
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); ...
[ "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....
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....
[ "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 (com...
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 (com...
[ "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() { ...
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() { ...
[ "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.getSource...
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.getSource...
[ "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 (StringU...
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 (StringU...
[ "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(); } ...
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(); } ...
[ "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"); ...
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"); ...
[ "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")...
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")...
[ "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("/...
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("/...
[ "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...
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...
[ "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); ...
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); ...
[ "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); ...
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); ...
[ "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) { n...
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) { n...
[ "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(); ...
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(); ...
[ "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...
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...
[ "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> se...
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> se...
[ "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 patt...
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 patt...
[ "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) { ...
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) { ...
[ "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.getValu...
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.getValu...
[ "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(DOMHe...
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(DOMHe...
[ "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 epi...
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 epi...
[ "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(e...
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(e...
[ "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.se...
java
private static EpisodeUpdate parseNextEpisodeUpdate(Element element) { EpisodeUpdate episodeUpdate = new EpisodeUpdate(); episodeUpdate.setSeriesId(DOMHelper.getValueFromElement(element, "id")); episodeUpdate.setEpisodeId(DOMHelper.getValueFromElement(element, SERIES)); episodeUpdate.se...
[ "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.set...
java
private static BannerUpdate parseNextBannerUpdate(Element element) { BannerUpdate bannerUpdate = new BannerUpdate(); bannerUpdate.setSeasonNum(DOMHelper.getValueFromElement(element, "SeasonNum")); bannerUpdate.setSeriesId(DOMHelper.getValueFromElement(element, SERIES)); bannerUpdate.set...
[ "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.getValueFromEleme...
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.getValueFromEleme...
[ "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)) { retur...
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)) { retur...
[ "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 ScriptEngineL...
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 ScriptEngineL...
[ "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 =...
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 =...
[ "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