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
threerings/gwt-utils
src/main/java/com/threerings/gwt/util/Callbacks.java
Callbacks.map
public static <T, P> AsyncCallback<T> map (AsyncCallback<P> target, final Function<T, P> f) { return new ChainedCallback<T, P>(target) { @Override public void onSuccess (T result) { forwardSuccess(f.apply(result)); } }; }
java
public static <T, P> AsyncCallback<T> map (AsyncCallback<P> target, final Function<T, P> f) { return new ChainedCallback<T, P>(target) { @Override public void onSuccess (T result) { forwardSuccess(f.apply(result)); } }; }
[ "public", "static", "<", "T", ",", "P", ">", "AsyncCallback", "<", "T", ">", "map", "(", "AsyncCallback", "<", "P", ">", "target", ",", "final", "Function", "<", "T", ",", "P", ">", "f", ")", "{", "return", "new", "ChainedCallback", "<", "T", ",", ...
Creates a chained callback that maps the result using the supplied function and passes the mapped result to the target callback.
[ "Creates", "a", "chained", "callback", "that", "maps", "the", "result", "using", "the", "supplied", "function", "and", "passes", "the", "mapped", "result", "to", "the", "target", "callback", "." ]
31b31a23b667f2a9c683160d77646db259f2aae5
https://github.com/threerings/gwt-utils/blob/31b31a23b667f2a9c683160d77646db259f2aae5/src/main/java/com/threerings/gwt/util/Callbacks.java#L39-L46
train
threerings/gwt-utils
src/main/java/com/threerings/gwt/util/Callbacks.java
Callbacks.before
public static <T> AsyncCallback<T> before (AsyncCallback<T> target, final Function<T, Void> preOp) { return new ChainedCallback<T, T>(target) { @Override public void onSuccess (T result) { preOp.apply(result); forwardSuccess(result); } }; }
java
public static <T> AsyncCallback<T> before (AsyncCallback<T> target, final Function<T, Void> preOp) { return new ChainedCallback<T, T>(target) { @Override public void onSuccess (T result) { preOp.apply(result); forwardSuccess(result); } }; }
[ "public", "static", "<", "T", ">", "AsyncCallback", "<", "T", ">", "before", "(", "AsyncCallback", "<", "T", ">", "target", ",", "final", "Function", "<", "T", ",", "Void", ">", "preOp", ")", "{", "return", "new", "ChainedCallback", "<", "T", ",", "T...
Creates a chained callback that calls the supplied pre-operation before passing the result on to the supplied target callback.
[ "Creates", "a", "chained", "callback", "that", "calls", "the", "supplied", "pre", "-", "operation", "before", "passing", "the", "result", "on", "to", "the", "supplied", "target", "callback", "." ]
31b31a23b667f2a9c683160d77646db259f2aae5
https://github.com/threerings/gwt-utils/blob/31b31a23b667f2a9c683160d77646db259f2aae5/src/main/java/com/threerings/gwt/util/Callbacks.java#L52-L61
train
threerings/gwt-utils
src/main/java/com/threerings/gwt/util/Callbacks.java
Callbacks.disabler
public static <T> AsyncCallback<T> disabler (AsyncCallback<T> callback, final HasEnabled... disablees) { for (HasEnabled widget : disablees) { widget.setEnabled(false); } return new ChainedCallback<T, T>(callback) { @Override public void onSuccess (T result) { for (HasEnabled widget : disablees) { widget.setEnabled(true); } forwardSuccess(result); } @Override public void onFailure (Throwable cause) { for (HasEnabled widget : disablees) { widget.setEnabled(true); } super.onFailure(cause); } }; }
java
public static <T> AsyncCallback<T> disabler (AsyncCallback<T> callback, final HasEnabled... disablees) { for (HasEnabled widget : disablees) { widget.setEnabled(false); } return new ChainedCallback<T, T>(callback) { @Override public void onSuccess (T result) { for (HasEnabled widget : disablees) { widget.setEnabled(true); } forwardSuccess(result); } @Override public void onFailure (Throwable cause) { for (HasEnabled widget : disablees) { widget.setEnabled(true); } super.onFailure(cause); } }; }
[ "public", "static", "<", "T", ">", "AsyncCallback", "<", "T", ">", "disabler", "(", "AsyncCallback", "<", "T", ">", "callback", ",", "final", "HasEnabled", "...", "disablees", ")", "{", "for", "(", "HasEnabled", "widget", ":", "disablees", ")", "{", "wid...
Immediately disables the specified widgets, and wraps the supplied callback in one that will reenable those widgets when the callback returns successfully or with failure.
[ "Immediately", "disables", "the", "specified", "widgets", "and", "wraps", "the", "supplied", "callback", "in", "one", "that", "will", "reenable", "those", "widgets", "when", "the", "callback", "returns", "successfully", "or", "with", "failure", "." ]
31b31a23b667f2a9c683160d77646db259f2aae5
https://github.com/threerings/gwt-utils/blob/31b31a23b667f2a9c683160d77646db259f2aae5/src/main/java/com/threerings/gwt/util/Callbacks.java#L67-L87
train
icode/ameba
src/main/java/ameba/db/ebean/support/ModelResourceStructure.java
ModelResourceStructure.tryConvertId
@SuppressWarnings("unchecked") protected final MODEL_ID tryConvertId(Object id) { try { return (MODEL_ID) getModelBeanDescriptor().convertId(id); } catch (Exception e) { throw new UnprocessableEntityException(Messages.get("info.query.id.unprocessable.entity"), e); } }
java
@SuppressWarnings("unchecked") protected final MODEL_ID tryConvertId(Object id) { try { return (MODEL_ID) getModelBeanDescriptor().convertId(id); } catch (Exception e) { throw new UnprocessableEntityException(Messages.get("info.query.id.unprocessable.entity"), e); } }
[ "@", "SuppressWarnings", "(", "\"unchecked\"", ")", "protected", "final", "MODEL_ID", "tryConvertId", "(", "Object", "id", ")", "{", "try", "{", "return", "(", "MODEL_ID", ")", "getModelBeanDescriptor", "(", ")", ".", "convertId", "(", "id", ")", ";", "}", ...
convert to id @param id string id @return MODEL_ID @throws NotFoundException response status 404
[ "convert", "to", "id" ]
9d4956e935898e41331b2745e400ef869cd265e0
https://github.com/icode/ameba/blob/9d4956e935898e41331b2745e400ef869cd265e0/src/main/java/ameba/db/ebean/support/ModelResourceStructure.java#L137-L144
train
icode/ameba
src/main/java/ameba/db/ebean/support/ModelResourceStructure.java
ModelResourceStructure.deleteMultipleModel
protected boolean deleteMultipleModel(Set<MODEL_ID> idCollection, boolean permanent) throws Exception { if (permanent) { server.deleteAllPermanent(modelType, idCollection); } else { server.deleteAll(modelType, idCollection); } return permanent; }
java
protected boolean deleteMultipleModel(Set<MODEL_ID> idCollection, boolean permanent) throws Exception { if (permanent) { server.deleteAllPermanent(modelType, idCollection); } else { server.deleteAll(modelType, idCollection); } return permanent; }
[ "protected", "boolean", "deleteMultipleModel", "(", "Set", "<", "MODEL_ID", ">", "idCollection", ",", "boolean", "permanent", ")", "throws", "Exception", "{", "if", "(", "permanent", ")", "{", "server", ".", "deleteAllPermanent", "(", "modelType", ",", "idCollec...
delete multiple Model @param idCollection model id collection @param permanent a boolean. @return if true delete from physical device, if logical delete return false, response status 202 @throws java.lang.Exception if any.
[ "delete", "multiple", "Model" ]
9d4956e935898e41331b2745e400ef869cd265e0
https://github.com/icode/ameba/blob/9d4956e935898e41331b2745e400ef869cd265e0/src/main/java/ameba/db/ebean/support/ModelResourceStructure.java#L482-L489
train
icode/ameba
src/main/java/ameba/db/ebean/support/ModelResourceStructure.java
ModelResourceStructure.deleteModel
protected boolean deleteModel(MODEL_ID id, boolean permanent) throws Exception { if (permanent) { server.deletePermanent(modelType, id); } else { server.delete(modelType, id); } return permanent; }
java
protected boolean deleteModel(MODEL_ID id, boolean permanent) throws Exception { if (permanent) { server.deletePermanent(modelType, id); } else { server.delete(modelType, id); } return permanent; }
[ "protected", "boolean", "deleteModel", "(", "MODEL_ID", "id", ",", "boolean", "permanent", ")", "throws", "Exception", "{", "if", "(", "permanent", ")", "{", "server", ".", "deletePermanent", "(", "modelType", ",", "id", ")", ";", "}", "else", "{", "server...
delete a model @param id model id @param permanent a boolean. @return if true delete from physical device, if logical delete return false, response status 202 @throws java.lang.Exception if any.
[ "delete", "a", "model" ]
9d4956e935898e41331b2745e400ef869cd265e0
https://github.com/icode/ameba/blob/9d4956e935898e41331b2745e400ef869cd265e0/src/main/java/ameba/db/ebean/support/ModelResourceStructure.java#L521-L528
train
icode/ameba
src/main/java/ameba/db/ebean/support/ModelResourceStructure.java
ModelResourceStructure.findByIds
public Response findByIds(@NotNull @PathParam("ids") URI_ID id, @NotNull @PathParam("ids") final PathSegment ids, @QueryParam("include_deleted") final boolean includeDeleted) throws Exception { final Query<MODEL> query = server.find(modelType); final MODEL_ID firstId = tryConvertId(ids.getPath()); Set<String> idSet = ids.getMatrixParameters().keySet(); final Set<MODEL_ID> idCollection = Sets.newLinkedHashSet(); idCollection.add(firstId); if (!idSet.isEmpty()) { idCollection.addAll(Collections2.transform(idSet, this::tryConvertId)); } matchedFindByIds(firstId, idCollection, includeDeleted); Object model; if (includeDeleted) { query.setIncludeSoftDeletes(); } final TxRunnable configureQuery = t -> { configDefaultQuery(query); configFindByIdsQuery(query, includeDeleted); applyUriQuery(query, false); }; if (!idSet.isEmpty()) { model = executeTx(t -> { configureQuery.run(t); List<MODEL> m = query.where().idIn(idCollection.toArray()).findList(); return processFoundByIdsModelList(m, includeDeleted); }); } else { model = executeTx(t -> { configureQuery.run(t); MODEL m = query.setId(firstId).findOne(); return processFoundByIdModel(m, includeDeleted); }); } if (isEmptyEntity(model)) { throw new NotFoundException(); } return Response.ok(model).build(); }
java
public Response findByIds(@NotNull @PathParam("ids") URI_ID id, @NotNull @PathParam("ids") final PathSegment ids, @QueryParam("include_deleted") final boolean includeDeleted) throws Exception { final Query<MODEL> query = server.find(modelType); final MODEL_ID firstId = tryConvertId(ids.getPath()); Set<String> idSet = ids.getMatrixParameters().keySet(); final Set<MODEL_ID> idCollection = Sets.newLinkedHashSet(); idCollection.add(firstId); if (!idSet.isEmpty()) { idCollection.addAll(Collections2.transform(idSet, this::tryConvertId)); } matchedFindByIds(firstId, idCollection, includeDeleted); Object model; if (includeDeleted) { query.setIncludeSoftDeletes(); } final TxRunnable configureQuery = t -> { configDefaultQuery(query); configFindByIdsQuery(query, includeDeleted); applyUriQuery(query, false); }; if (!idSet.isEmpty()) { model = executeTx(t -> { configureQuery.run(t); List<MODEL> m = query.where().idIn(idCollection.toArray()).findList(); return processFoundByIdsModelList(m, includeDeleted); }); } else { model = executeTx(t -> { configureQuery.run(t); MODEL m = query.setId(firstId).findOne(); return processFoundByIdModel(m, includeDeleted); }); } if (isEmptyEntity(model)) { throw new NotFoundException(); } return Response.ok(model).build(); }
[ "public", "Response", "findByIds", "(", "@", "NotNull", "@", "PathParam", "(", "\"ids\"", ")", "URI_ID", "id", ",", "@", "NotNull", "@", "PathParam", "(", "\"ids\"", ")", "final", "PathSegment", "ids", ",", "@", "QueryParam", "(", "\"include_deleted\"", ")",...
Find a model or model list given its Ids. @param id The id use for path matching type @param ids the id of the model. @param includeDeleted a boolean. @return a {@link javax.ws.rs.core.Response} object. @throws java.lang.Exception if any. @see javax.ws.rs.GET @see AbstractModelResource#findByIds
[ "Find", "a", "model", "or", "model", "list", "given", "its", "Ids", "." ]
9d4956e935898e41331b2745e400ef869cd265e0
https://github.com/icode/ameba/blob/9d4956e935898e41331b2745e400ef869cd265e0/src/main/java/ameba/db/ebean/support/ModelResourceStructure.java#L552-L591
train
icode/ameba
src/main/java/ameba/db/ebean/support/ModelResourceStructure.java
ModelResourceStructure.fetchHistoryAsOf
public Response fetchHistoryAsOf(@PathParam("id") URI_ID id, @PathParam("asof") final Timestamp asOf) throws Exception { final MODEL_ID mId = tryConvertId(id); matchedFetchHistoryAsOf(mId, asOf); final Query<MODEL> query = server.find(modelType); defaultFindOrderBy(query); Object entity = executeTx(t -> { configDefaultQuery(query); configFetchHistoryAsOfQuery(query, mId, asOf); applyUriQuery(query, false); MODEL model = query.asOf(asOf).setId(mId).findOne(); return processFetchedHistoryAsOfModel(mId, model, asOf); }); if (isEmptyEntity(entity)) { return Response.noContent().build(); } return Response.ok(entity).build(); }
java
public Response fetchHistoryAsOf(@PathParam("id") URI_ID id, @PathParam("asof") final Timestamp asOf) throws Exception { final MODEL_ID mId = tryConvertId(id); matchedFetchHistoryAsOf(mId, asOf); final Query<MODEL> query = server.find(modelType); defaultFindOrderBy(query); Object entity = executeTx(t -> { configDefaultQuery(query); configFetchHistoryAsOfQuery(query, mId, asOf); applyUriQuery(query, false); MODEL model = query.asOf(asOf).setId(mId).findOne(); return processFetchedHistoryAsOfModel(mId, model, asOf); }); if (isEmptyEntity(entity)) { return Response.noContent().build(); } return Response.ok(entity).build(); }
[ "public", "Response", "fetchHistoryAsOf", "(", "@", "PathParam", "(", "\"id\"", ")", "URI_ID", "id", ",", "@", "PathParam", "(", "\"asof\"", ")", "final", "Timestamp", "asOf", ")", "throws", "Exception", "{", "final", "MODEL_ID", "mId", "=", "tryConvertId", ...
find history as of timestamp @param id model id @param asOf Timestamp @return history model @throws java.lang.Exception any error
[ "find", "history", "as", "of", "timestamp" ]
9d4956e935898e41331b2745e400ef869cd265e0
https://github.com/icode/ameba/blob/9d4956e935898e41331b2745e400ef869cd265e0/src/main/java/ameba/db/ebean/support/ModelResourceStructure.java#L904-L924
train
icode/ameba
src/main/java/ameba/message/filtering/EntityFieldsUtils.java
EntityFieldsUtils.parseQueryFields
public static String parseQueryFields(UriInfo uriInfo) { List<String> selectables = uriInfo.getQueryParameters() .get(EntityFieldsScopeResolver.FIELDS_PARAM_NAME); StringBuilder builder = new StringBuilder(); if (selectables != null) { for (int i = 0; i < selectables.size(); i++) { String s = selectables.get(i); if (StringUtils.isNotBlank(s)) { if (!s.startsWith("(")) { builder.append("("); } builder.append(s); if (!s.endsWith(")")) { builder.append(")"); } if (i < selectables.size() - 1) { builder.append(":"); } } } } return builder.length() == 0 ? null : builder.toString(); }
java
public static String parseQueryFields(UriInfo uriInfo) { List<String> selectables = uriInfo.getQueryParameters() .get(EntityFieldsScopeResolver.FIELDS_PARAM_NAME); StringBuilder builder = new StringBuilder(); if (selectables != null) { for (int i = 0; i < selectables.size(); i++) { String s = selectables.get(i); if (StringUtils.isNotBlank(s)) { if (!s.startsWith("(")) { builder.append("("); } builder.append(s); if (!s.endsWith(")")) { builder.append(")"); } if (i < selectables.size() - 1) { builder.append(":"); } } } } return builder.length() == 0 ? null : builder.toString(); }
[ "public", "static", "String", "parseQueryFields", "(", "UriInfo", "uriInfo", ")", "{", "List", "<", "String", ">", "selectables", "=", "uriInfo", ".", "getQueryParameters", "(", ")", ".", "get", "(", "EntityFieldsScopeResolver", ".", "FIELDS_PARAM_NAME", ")", ";...
Parse and return a BeanPathProperties format from UriInfo @param uriInfo uri info @return query fields
[ "Parse", "and", "return", "a", "BeanPathProperties", "format", "from", "UriInfo" ]
9d4956e935898e41331b2745e400ef869cd265e0
https://github.com/icode/ameba/blob/9d4956e935898e41331b2745e400ef869cd265e0/src/main/java/ameba/message/filtering/EntityFieldsUtils.java#L33-L55
train
threerings/gwt-utils
src/main/java/com/threerings/gwt/ui/EnumListBox.java
EnumListBox.setSelectedValue
public void setSelectedValue (E value) { String valstr = value.toString(); for (int ii = 0; ii < getItemCount(); ii++) { if (getValue(ii).equals(valstr)) { setSelectedIndex(ii); break; } } }
java
public void setSelectedValue (E value) { String valstr = value.toString(); for (int ii = 0; ii < getItemCount(); ii++) { if (getValue(ii).equals(valstr)) { setSelectedIndex(ii); break; } } }
[ "public", "void", "setSelectedValue", "(", "E", "value", ")", "{", "String", "valstr", "=", "value", ".", "toString", "(", ")", ";", "for", "(", "int", "ii", "=", "0", ";", "ii", "<", "getItemCount", "(", ")", ";", "ii", "++", ")", "{", "if", "("...
Selects the specified value.
[ "Selects", "the", "specified", "value", "." ]
31b31a23b667f2a9c683160d77646db259f2aae5
https://github.com/threerings/gwt-utils/blob/31b31a23b667f2a9c683160d77646db259f2aae5/src/main/java/com/threerings/gwt/ui/EnumListBox.java#L56-L65
train
threerings/gwt-utils
src/main/java/com/threerings/gwt/ui/EnumListBox.java
EnumListBox.getSelectedEnum
public E getSelectedEnum () { int selidx = getSelectedIndex(); return (selidx < 0) ? null : Enum.valueOf(_eclass, getValue(selidx)); }
java
public E getSelectedEnum () { int selidx = getSelectedIndex(); return (selidx < 0) ? null : Enum.valueOf(_eclass, getValue(selidx)); }
[ "public", "E", "getSelectedEnum", "(", ")", "{", "int", "selidx", "=", "getSelectedIndex", "(", ")", ";", "return", "(", "selidx", "<", "0", ")", "?", "null", ":", "Enum", ".", "valueOf", "(", "_eclass", ",", "getValue", "(", "selidx", ")", ")", ";",...
Returns the currently selected value, or null if no value is selected.
[ "Returns", "the", "currently", "selected", "value", "or", "null", "if", "no", "value", "is", "selected", "." ]
31b31a23b667f2a9c683160d77646db259f2aae5
https://github.com/threerings/gwt-utils/blob/31b31a23b667f2a9c683160d77646db259f2aae5/src/main/java/com/threerings/gwt/ui/EnumListBox.java#L70-L74
train
icode/ameba
src/main/java/ameba/message/internal/BeanPathProperties.java
BeanPathProperties.hasPath
public boolean hasPath(String path) { Props props = pathMap.get(path); return props != null && !props.isEmpty(); }
java
public boolean hasPath(String path) { Props props = pathMap.get(path); return props != null && !props.isEmpty(); }
[ "public", "boolean", "hasPath", "(", "String", "path", ")", "{", "Props", "props", "=", "pathMap", ".", "get", "(", "path", ")", ";", "return", "props", "!=", "null", "&&", "!", "props", ".", "isEmpty", "(", ")", ";", "}" ]
Return true if the path is defined and has properties. @param path path @return true is has path
[ "Return", "true", "if", "the", "path", "is", "defined", "and", "has", "properties", "." ]
9d4956e935898e41331b2745e400ef869cd265e0
https://github.com/icode/ameba/blob/9d4956e935898e41331b2745e400ef869cd265e0/src/main/java/ameba/message/internal/BeanPathProperties.java#L97-L100
train
icode/ameba
src/main/java/ameba/message/internal/BeanPathProperties.java
BeanPathProperties.getProperties
public Set<String> getProperties(String path) { Props props = pathMap.get(path); return props == null ? null : props.getProperties(); }
java
public Set<String> getProperties(String path) { Props props = pathMap.get(path); return props == null ? null : props.getProperties(); }
[ "public", "Set", "<", "String", ">", "getProperties", "(", "String", "path", ")", "{", "Props", "props", "=", "pathMap", ".", "get", "(", "path", ")", ";", "return", "props", "==", "null", "?", "null", ":", "props", ".", "getProperties", "(", ")", ";...
Get the properties for a given path. @param path path @return properties
[ "Get", "the", "properties", "for", "a", "given", "path", "." ]
9d4956e935898e41331b2745e400ef869cd265e0
https://github.com/icode/ameba/blob/9d4956e935898e41331b2745e400ef869cd265e0/src/main/java/ameba/message/internal/BeanPathProperties.java#L108-L111
train
icode/ameba
src/main/java/ameba/message/internal/BeanPathProperties.java
BeanPathProperties.put
public void put(String path, Set<String> properties) { pathMap.put(path, new Props(this, null, path, properties)); }
java
public void put(String path, Set<String> properties) { pathMap.put(path, new Props(this, null, path, properties)); }
[ "public", "void", "put", "(", "String", "path", ",", "Set", "<", "String", ">", "properties", ")", "{", "pathMap", ".", "put", "(", "path", ",", "new", "Props", "(", "this", ",", "null", ",", "path", ",", "properties", ")", ")", ";", "}" ]
Set the properties for a given path. @param path path @param properties properties set
[ "Set", "the", "properties", "for", "a", "given", "path", "." ]
9d4956e935898e41331b2745e400ef869cd265e0
https://github.com/icode/ameba/blob/9d4956e935898e41331b2745e400ef869cd265e0/src/main/java/ameba/message/internal/BeanPathProperties.java#L130-L132
train
icode/ameba
src/main/java/ameba/message/internal/BeanPathProperties.java
BeanPathProperties.each
public void each(Each<Props> each) { for (Map.Entry<String, Props> entry : pathMap.entrySet()) { Props props = entry.getValue(); each.execute(props); } }
java
public void each(Each<Props> each) { for (Map.Entry<String, Props> entry : pathMap.entrySet()) { Props props = entry.getValue(); each.execute(props); } }
[ "public", "void", "each", "(", "Each", "<", "Props", ">", "each", ")", "{", "for", "(", "Map", ".", "Entry", "<", "String", ",", "Props", ">", "entry", ":", "pathMap", ".", "entrySet", "(", ")", ")", "{", "Props", "props", "=", "entry", ".", "get...
Each these path properties as fetch paths to the query. @param each each process
[ "Each", "these", "path", "properties", "as", "fetch", "paths", "to", "the", "query", "." ]
9d4956e935898e41331b2745e400ef869cd265e0
https://github.com/icode/ameba/blob/9d4956e935898e41331b2745e400ef869cd265e0/src/main/java/ameba/message/internal/BeanPathProperties.java#L168-L175
train
udoprog/tiny-async-java
tiny-async-core/src/main/java/eu/toolchain/concurrent/RetryCallHelper.java
RetryCallHelper.finished
public void finished() { final ScheduledFuture<?> scheduled = nextCall.getAndSet(null); if (scheduled != null) { scheduled.cancel(true); } }
java
public void finished() { final ScheduledFuture<?> scheduled = nextCall.getAndSet(null); if (scheduled != null) { scheduled.cancel(true); } }
[ "public", "void", "finished", "(", ")", "{", "final", "ScheduledFuture", "<", "?", ">", "scheduled", "=", "nextCall", ".", "getAndSet", "(", "null", ")", ";", "if", "(", "scheduled", "!=", "null", ")", "{", "scheduled", ".", "cancel", "(", "true", ")",...
Must be called when the target completable finishes to clean up any potential scheduled _future_ events.
[ "Must", "be", "called", "when", "the", "target", "completable", "finishes", "to", "clean", "up", "any", "potential", "scheduled", "_future_", "events", "." ]
987706d4b7f2d13b45eefdc6c54ea63ce64b3310
https://github.com/udoprog/tiny-async-java/blob/987706d4b7f2d13b45eefdc6c54ea63ce64b3310/tiny-async-core/src/main/java/eu/toolchain/concurrent/RetryCallHelper.java#L121-L127
train
threerings/gwt-utils
src/main/java/com/threerings/gwt/ui/Bindings.java
Bindings.bindEnabled
public static void bindEnabled (Value<Boolean> value, final FocusWidget... targets) { value.addListenerAndTrigger(new Value.Listener<Boolean>() { public void valueChanged (Boolean enabled) { for (FocusWidget target : targets) { target.setEnabled(enabled); } } }); }
java
public static void bindEnabled (Value<Boolean> value, final FocusWidget... targets) { value.addListenerAndTrigger(new Value.Listener<Boolean>() { public void valueChanged (Boolean enabled) { for (FocusWidget target : targets) { target.setEnabled(enabled); } } }); }
[ "public", "static", "void", "bindEnabled", "(", "Value", "<", "Boolean", ">", "value", ",", "final", "FocusWidget", "...", "targets", ")", "{", "value", ".", "addListenerAndTrigger", "(", "new", "Value", ".", "Listener", "<", "Boolean", ">", "(", ")", "{",...
Binds the enabledness state of the target widget to the supplied boolean value.
[ "Binds", "the", "enabledness", "state", "of", "the", "target", "widget", "to", "the", "supplied", "boolean", "value", "." ]
31b31a23b667f2a9c683160d77646db259f2aae5
https://github.com/threerings/gwt-utils/blob/31b31a23b667f2a9c683160d77646db259f2aae5/src/main/java/com/threerings/gwt/ui/Bindings.java#L59-L68
train
threerings/gwt-utils
src/main/java/com/threerings/gwt/ui/Bindings.java
Bindings.bindVisible
public static void bindVisible (Value<Boolean> value, final Widget... targets) { value.addListenerAndTrigger(new Value.Listener<Boolean>() { public void valueChanged (Boolean visible) { for (Widget target : targets) { target.setVisible(visible); } } }); }
java
public static void bindVisible (Value<Boolean> value, final Widget... targets) { value.addListenerAndTrigger(new Value.Listener<Boolean>() { public void valueChanged (Boolean visible) { for (Widget target : targets) { target.setVisible(visible); } } }); }
[ "public", "static", "void", "bindVisible", "(", "Value", "<", "Boolean", ">", "value", ",", "final", "Widget", "...", "targets", ")", "{", "value", ".", "addListenerAndTrigger", "(", "new", "Value", ".", "Listener", "<", "Boolean", ">", "(", ")", "{", "p...
Binds the visible state of the target widget to the supplied boolean value.
[ "Binds", "the", "visible", "state", "of", "the", "target", "widget", "to", "the", "supplied", "boolean", "value", "." ]
31b31a23b667f2a9c683160d77646db259f2aae5
https://github.com/threerings/gwt-utils/blob/31b31a23b667f2a9c683160d77646db259f2aae5/src/main/java/com/threerings/gwt/ui/Bindings.java#L73-L82
train
threerings/gwt-utils
src/main/java/com/threerings/gwt/ui/Bindings.java
Bindings.bindHovered
public static <T extends HasMouseOverHandlers & HasMouseOutHandlers> void bindHovered ( final Value<Boolean> value, T... targets) { HoverHandler handler = new HoverHandler(value); for (T target : targets) { target.addMouseOverHandler(handler); target.addMouseOutHandler(handler); } }
java
public static <T extends HasMouseOverHandlers & HasMouseOutHandlers> void bindHovered ( final Value<Boolean> value, T... targets) { HoverHandler handler = new HoverHandler(value); for (T target : targets) { target.addMouseOverHandler(handler); target.addMouseOutHandler(handler); } }
[ "public", "static", "<", "T", "extends", "HasMouseOverHandlers", "&", "HasMouseOutHandlers", ">", "void", "bindHovered", "(", "final", "Value", "<", "Boolean", ">", "value", ",", "T", "...", "targets", ")", "{", "HoverHandler", "handler", "=", "new", "HoverHan...
Binds the hovered state of the supplied target widgets to the supplied boolean value. The supplied value will be toggled to true when the mouse is hovering over any of the supplied targets and false otherwise.
[ "Binds", "the", "hovered", "state", "of", "the", "supplied", "target", "widgets", "to", "the", "supplied", "boolean", "value", ".", "The", "supplied", "value", "will", "be", "toggled", "to", "true", "when", "the", "mouse", "is", "hovering", "over", "any", ...
31b31a23b667f2a9c683160d77646db259f2aae5
https://github.com/threerings/gwt-utils/blob/31b31a23b667f2a9c683160d77646db259f2aae5/src/main/java/com/threerings/gwt/ui/Bindings.java#L108-L116
train
threerings/gwt-utils
src/main/java/com/threerings/gwt/ui/Bindings.java
Bindings.bindLabel
public static void bindLabel (final Value<String> value, final HasText target) { value.addListenerAndTrigger(new Value.Listener<String>() { public void valueChanged (String value) { // avoid updating the target if the value is already the same; in the case where // the target is a TextBox, setting the text will move the cursor to the end of the // text, which is annoying if a value is being updated on every character edit if (!target.getText().equals(value)) { target.setText(value); } } }); }
java
public static void bindLabel (final Value<String> value, final HasText target) { value.addListenerAndTrigger(new Value.Listener<String>() { public void valueChanged (String value) { // avoid updating the target if the value is already the same; in the case where // the target is a TextBox, setting the text will move the cursor to the end of the // text, which is annoying if a value is being updated on every character edit if (!target.getText().equals(value)) { target.setText(value); } } }); }
[ "public", "static", "void", "bindLabel", "(", "final", "Value", "<", "String", ">", "value", ",", "final", "HasText", "target", ")", "{", "value", ".", "addListenerAndTrigger", "(", "new", "Value", ".", "Listener", "<", "String", ">", "(", ")", "{", "pub...
Binds the specified string value to the supplied text-having widget. The binding is one-way, in that only changes to the value will be reflected in the text-having widget. It is expected that no other changes will be made to the widget.
[ "Binds", "the", "specified", "string", "value", "to", "the", "supplied", "text", "-", "having", "widget", ".", "The", "binding", "is", "one", "-", "way", "in", "that", "only", "changes", "to", "the", "value", "will", "be", "reflected", "in", "the", "text...
31b31a23b667f2a9c683160d77646db259f2aae5
https://github.com/threerings/gwt-utils/blob/31b31a23b667f2a9c683160d77646db259f2aae5/src/main/java/com/threerings/gwt/ui/Bindings.java#L142-L154
train
threerings/gwt-utils
src/main/java/com/threerings/gwt/ui/Bindings.java
Bindings.makeToggler
public static ClickHandler makeToggler (final Value<Boolean> value) { Preconditions.checkNotNull(value, "value"); return new ClickHandler() { public void onClick (ClickEvent event) { value.update(!value.get()); } }; }
java
public static ClickHandler makeToggler (final Value<Boolean> value) { Preconditions.checkNotNull(value, "value"); return new ClickHandler() { public void onClick (ClickEvent event) { value.update(!value.get()); } }; }
[ "public", "static", "ClickHandler", "makeToggler", "(", "final", "Value", "<", "Boolean", ">", "value", ")", "{", "Preconditions", ".", "checkNotNull", "(", "value", ",", "\"value\"", ")", ";", "return", "new", "ClickHandler", "(", ")", "{", "public", "void"...
Returns a click handler that toggles the supplied boolean value when clicked.
[ "Returns", "a", "click", "handler", "that", "toggles", "the", "supplied", "boolean", "value", "when", "clicked", "." ]
31b31a23b667f2a9c683160d77646db259f2aae5
https://github.com/threerings/gwt-utils/blob/31b31a23b667f2a9c683160d77646db259f2aae5/src/main/java/com/threerings/gwt/ui/Bindings.java#L180-L188
train
threerings/gwt-utils
src/main/java/com/threerings/gwt/ui/Bindings.java
Bindings.bindStateStyle
public static void bindStateStyle (Value<Boolean> value, final String onStyle, final String offStyle, final Widget... targets) { value.addListenerAndTrigger(new Value.Listener<Boolean>() { public void valueChanged (Boolean value) { String add, remove; if (value) { remove = offStyle; add = onStyle; } else { remove = onStyle; add = offStyle; } for (Widget target : targets) { if (remove != null) { target.removeStyleName(remove); } if (add != null) { target.addStyleName(add); } } } }); }
java
public static void bindStateStyle (Value<Boolean> value, final String onStyle, final String offStyle, final Widget... targets) { value.addListenerAndTrigger(new Value.Listener<Boolean>() { public void valueChanged (Boolean value) { String add, remove; if (value) { remove = offStyle; add = onStyle; } else { remove = onStyle; add = offStyle; } for (Widget target : targets) { if (remove != null) { target.removeStyleName(remove); } if (add != null) { target.addStyleName(add); } } } }); }
[ "public", "static", "void", "bindStateStyle", "(", "Value", "<", "Boolean", ">", "value", ",", "final", "String", "onStyle", ",", "final", "String", "offStyle", ",", "final", "Widget", "...", "targets", ")", "{", "value", ".", "addListenerAndTrigger", "(", "...
Configures either `onStyle` or `offStyle` on the supplied target widgets depending on the state of the supplied boolean `value`. @param onStyle the style name to be applied when the value is true, or null. @param offStyle the style name to be applied when the value is false, or null.
[ "Configures", "either", "onStyle", "or", "offStyle", "on", "the", "supplied", "target", "widgets", "depending", "on", "the", "state", "of", "the", "supplied", "boolean", "value", "." ]
31b31a23b667f2a9c683160d77646db259f2aae5
https://github.com/threerings/gwt-utils/blob/31b31a23b667f2a9c683160d77646db259f2aae5/src/main/java/com/threerings/gwt/ui/Bindings.java#L197-L220
train
icode/ameba
src/main/java/ameba/db/migration/resources/MigrationResource.java
MigrationResource.resolved
private List<MigrationInfo> resolved(MigrationInfo[] migrationInfos) { if (migrationInfos.length == 0) throw new NotFoundException(); List<MigrationInfo> resolvedMigrations = Lists.newArrayList(); for (MigrationInfo migrationInfo : migrationInfos) { if (migrationInfo.getState().isResolved()) { resolvedMigrations.add(migrationInfo); } } return resolvedMigrations; }
java
private List<MigrationInfo> resolved(MigrationInfo[] migrationInfos) { if (migrationInfos.length == 0) throw new NotFoundException(); List<MigrationInfo> resolvedMigrations = Lists.newArrayList(); for (MigrationInfo migrationInfo : migrationInfos) { if (migrationInfo.getState().isResolved()) { resolvedMigrations.add(migrationInfo); } } return resolvedMigrations; }
[ "private", "List", "<", "MigrationInfo", ">", "resolved", "(", "MigrationInfo", "[", "]", "migrationInfos", ")", "{", "if", "(", "migrationInfos", ".", "length", "==", "0", ")", "throw", "new", "NotFoundException", "(", ")", ";", "List", "<", "MigrationInfo"...
Retrieves the full set of infos about the migrations resolved on the classpath. @return The resolved migrations. An empty array if none.
[ "Retrieves", "the", "full", "set", "of", "infos", "about", "the", "migrations", "resolved", "on", "the", "classpath", "." ]
9d4956e935898e41331b2745e400ef869cd265e0
https://github.com/icode/ameba/blob/9d4956e935898e41331b2745e400ef869cd265e0/src/main/java/ameba/db/migration/resources/MigrationResource.java#L405-L416
train
icode/ameba
src/main/java/ameba/db/migration/resources/MigrationResource.java
MigrationResource.failed
private List<MigrationInfo> failed(MigrationInfo[] migrationInfos) { if (migrationInfos.length == 0) throw new NotFoundException(); List<MigrationInfo> failedMigrations = Lists.newArrayList(); for (MigrationInfo migrationInfo : migrationInfos) { if (migrationInfo.getState().isFailed()) { failedMigrations.add(migrationInfo); } } return failedMigrations; }
java
private List<MigrationInfo> failed(MigrationInfo[] migrationInfos) { if (migrationInfos.length == 0) throw new NotFoundException(); List<MigrationInfo> failedMigrations = Lists.newArrayList(); for (MigrationInfo migrationInfo : migrationInfos) { if (migrationInfo.getState().isFailed()) { failedMigrations.add(migrationInfo); } } return failedMigrations; }
[ "private", "List", "<", "MigrationInfo", ">", "failed", "(", "MigrationInfo", "[", "]", "migrationInfos", ")", "{", "if", "(", "migrationInfos", ".", "length", "==", "0", ")", "throw", "new", "NotFoundException", "(", ")", ";", "List", "<", "MigrationInfo", ...
Retrieves the full set of infos about the migrations that failed. @return The failed migrations. An empty array if none.
[ "Retrieves", "the", "full", "set", "of", "infos", "about", "the", "migrations", "that", "failed", "." ]
9d4956e935898e41331b2745e400ef869cd265e0
https://github.com/icode/ameba/blob/9d4956e935898e41331b2745e400ef869cd265e0/src/main/java/ameba/db/migration/resources/MigrationResource.java#L423-L434
train
icode/ameba
src/main/java/ameba/db/migration/resources/MigrationResource.java
MigrationResource.future
private List<MigrationInfo> future(MigrationInfo[] migrationInfos) { if (migrationInfos.length == 0) throw new NotFoundException(); List<MigrationInfo> futureMigrations = Lists.newArrayList(); for (MigrationInfo migrationInfo : migrationInfos) { if ((migrationInfo.getState() == MigrationState.FUTURE_SUCCESS) || (migrationInfo.getState() == MigrationState.FUTURE_FAILED)) { futureMigrations.add(migrationInfo); } } return futureMigrations; }
java
private List<MigrationInfo> future(MigrationInfo[] migrationInfos) { if (migrationInfos.length == 0) throw new NotFoundException(); List<MigrationInfo> futureMigrations = Lists.newArrayList(); for (MigrationInfo migrationInfo : migrationInfos) { if ((migrationInfo.getState() == MigrationState.FUTURE_SUCCESS) || (migrationInfo.getState() == MigrationState.FUTURE_FAILED)) { futureMigrations.add(migrationInfo); } } return futureMigrations; }
[ "private", "List", "<", "MigrationInfo", ">", "future", "(", "MigrationInfo", "[", "]", "migrationInfos", ")", "{", "if", "(", "migrationInfos", ".", "length", "==", "0", ")", "throw", "new", "NotFoundException", "(", ")", ";", "List", "<", "MigrationInfo", ...
Retrieves the full set of infos about future migrations applied to the DB. @return The future migrations. An empty array if none.
[ "Retrieves", "the", "full", "set", "of", "infos", "about", "future", "migrations", "applied", "to", "the", "DB", "." ]
9d4956e935898e41331b2745e400ef869cd265e0
https://github.com/icode/ameba/blob/9d4956e935898e41331b2745e400ef869cd265e0/src/main/java/ameba/db/migration/resources/MigrationResource.java#L441-L453
train
xebialabs/overcast
src/main/java/com/xebialabs/overcast/support/libvirt/jdom/DiskXml.java
DiskXml.updateDisks
public static void updateDisks(Document domainXml, List<StorageVol> volumes) throws LibvirtException { XPathFactory xpf = XPathFactory.instance(); XPathExpression<Element> diskExpr = xpf.compile(XPATH_DISK, Filters.element()); XPathExpression<Attribute> fileExpr = xpf.compile(XPATH_DISK_FILE, Filters.attribute()); List<Element> disks = diskExpr.evaluate(domainXml); Iterator<StorageVol> cloneDiskIter = volumes.iterator(); for (Element disk : disks) { Attribute file = fileExpr.evaluateFirst(disk); StorageVol cloneDisk = cloneDiskIter.next(); file.setValue(cloneDisk.getPath()); } }
java
public static void updateDisks(Document domainXml, List<StorageVol> volumes) throws LibvirtException { XPathFactory xpf = XPathFactory.instance(); XPathExpression<Element> diskExpr = xpf.compile(XPATH_DISK, Filters.element()); XPathExpression<Attribute> fileExpr = xpf.compile(XPATH_DISK_FILE, Filters.attribute()); List<Element> disks = diskExpr.evaluate(domainXml); Iterator<StorageVol> cloneDiskIter = volumes.iterator(); for (Element disk : disks) { Attribute file = fileExpr.evaluateFirst(disk); StorageVol cloneDisk = cloneDiskIter.next(); file.setValue(cloneDisk.getPath()); } }
[ "public", "static", "void", "updateDisks", "(", "Document", "domainXml", ",", "List", "<", "StorageVol", ">", "volumes", ")", "throws", "LibvirtException", "{", "XPathFactory", "xpf", "=", "XPathFactory", ".", "instance", "(", ")", ";", "XPathExpression", "<", ...
update the disks in the domain XML. It is assumed that the the size of the volumes is the same as the number of disk elements and that the order is the same.
[ "update", "the", "disks", "in", "the", "domain", "XML", ".", "It", "is", "assumed", "that", "the", "the", "size", "of", "the", "volumes", "is", "the", "same", "as", "the", "number", "of", "disk", "elements", "and", "that", "the", "order", "is", "the", ...
716e57b66870c9afe51edc3b6045863a34fb0061
https://github.com/xebialabs/overcast/blob/716e57b66870c9afe51edc3b6045863a34fb0061/src/main/java/com/xebialabs/overcast/support/libvirt/jdom/DiskXml.java#L51-L62
train
xebialabs/overcast
src/main/java/com/xebialabs/overcast/support/libvirt/jdom/DiskXml.java
DiskXml.getDisks
public static List<Disk> getDisks(Connect connect, Document domainXml) { try { List<Disk> ret = new ArrayList<>(); XPathFactory xpf = XPathFactory.instance(); XPathExpression<Element> diskExpr = xpf.compile(XPATH_DISK, Filters.element()); XPathExpression<Attribute> typeExpr = xpf.compile(XPATH_DISK_TYPE, Filters.attribute()); XPathExpression<Attribute> fileExpr = xpf.compile(XPATH_DISK_FILE, Filters.attribute()); XPathExpression<Attribute> devExpr = xpf.compile(XPATH_DISK_DEV, Filters.attribute()); List<Element> disks = diskExpr.evaluate(domainXml); for (Element disk : disks) { Attribute type = typeExpr.evaluateFirst(disk); Attribute file = fileExpr.evaluateFirst(disk); Attribute dev = devExpr.evaluateFirst(disk); StorageVol volume = LibvirtUtil.findVolume(connect, file.getValue()); ret.add(new Disk(dev.getValue(), file.getValue(), volume, type.getValue())); } return ret; } catch (LibvirtException e) { throw new LibvirtRuntimeException(e); } }
java
public static List<Disk> getDisks(Connect connect, Document domainXml) { try { List<Disk> ret = new ArrayList<>(); XPathFactory xpf = XPathFactory.instance(); XPathExpression<Element> diskExpr = xpf.compile(XPATH_DISK, Filters.element()); XPathExpression<Attribute> typeExpr = xpf.compile(XPATH_DISK_TYPE, Filters.attribute()); XPathExpression<Attribute> fileExpr = xpf.compile(XPATH_DISK_FILE, Filters.attribute()); XPathExpression<Attribute> devExpr = xpf.compile(XPATH_DISK_DEV, Filters.attribute()); List<Element> disks = diskExpr.evaluate(domainXml); for (Element disk : disks) { Attribute type = typeExpr.evaluateFirst(disk); Attribute file = fileExpr.evaluateFirst(disk); Attribute dev = devExpr.evaluateFirst(disk); StorageVol volume = LibvirtUtil.findVolume(connect, file.getValue()); ret.add(new Disk(dev.getValue(), file.getValue(), volume, type.getValue())); } return ret; } catch (LibvirtException e) { throw new LibvirtRuntimeException(e); } }
[ "public", "static", "List", "<", "Disk", ">", "getDisks", "(", "Connect", "connect", ",", "Document", "domainXml", ")", "{", "try", "{", "List", "<", "Disk", ">", "ret", "=", "new", "ArrayList", "<>", "(", ")", ";", "XPathFactory", "xpf", "=", "XPathFa...
Get the disks connected to the domain.
[ "Get", "the", "disks", "connected", "to", "the", "domain", "." ]
716e57b66870c9afe51edc3b6045863a34fb0061
https://github.com/xebialabs/overcast/blob/716e57b66870c9afe51edc3b6045863a34fb0061/src/main/java/com/xebialabs/overcast/support/libvirt/jdom/DiskXml.java#L65-L87
train
tminglei/form-binder-java
src/main/java/com/github/tminglei/bind/Simple.java
Simple.mapping
public static GroupMapping mapping(Map.Entry<String, Mapping<?>>... fields) { return new GroupMapping(Arrays.asList(fields)); }
java
public static GroupMapping mapping(Map.Entry<String, Mapping<?>>... fields) { return new GroupMapping(Arrays.asList(fields)); }
[ "public", "static", "GroupMapping", "mapping", "(", "Map", ".", "Entry", "<", "String", ",", "Mapping", "<", "?", ">", ">", "...", "fields", ")", "{", "return", "new", "GroupMapping", "(", "Arrays", ".", "asList", "(", "fields", ")", ")", ";", "}" ]
shortcut method to construct group mapping @param fields fields for the group mapping @return new created mapping
[ "shortcut", "method", "to", "construct", "group", "mapping" ]
4c0bd1e8f81ae56b21142bb525ee6b4deb7f92ab
https://github.com/tminglei/form-binder-java/blob/4c0bd1e8f81ae56b21142bb525ee6b4deb7f92ab/src/main/java/com/github/tminglei/bind/Simple.java#L45-L47
train
tminglei/form-binder-java
src/main/java/com/github/tminglei/bind/Simple.java
Simple.field
public static Map.Entry<String, Mapping<?>> field(String name, Mapping<?> mapping) { return FrameworkUtils.entry(name, mapping); }
java
public static Map.Entry<String, Mapping<?>> field(String name, Mapping<?> mapping) { return FrameworkUtils.entry(name, mapping); }
[ "public", "static", "Map", ".", "Entry", "<", "String", ",", "Mapping", "<", "?", ">", ">", "field", "(", "String", "name", ",", "Mapping", "<", "?", ">", "mapping", ")", "{", "return", "FrameworkUtils", ".", "entry", "(", "name", ",", "mapping", ")"...
helper method to construct group field mapping @param name field name (short name) @param mapping the related mapping @return field entry
[ "helper", "method", "to", "construct", "group", "field", "mapping" ]
4c0bd1e8f81ae56b21142bb525ee6b4deb7f92ab
https://github.com/tminglei/form-binder-java/blob/4c0bd1e8f81ae56b21142bb525ee6b4deb7f92ab/src/main/java/com/github/tminglei/bind/Simple.java#L55-L57
train
MaxxtonGroup/microdocs
example/customer-service/src/main/java/com/example/service/customer/service/CustomerService.java
CustomerService.removeCustomer
public boolean removeCustomer(Long customerId) { Customer customer = getCustomer(customerId); if(customer != null){ customerRepository.delete(customer); return true; } return false; }
java
public boolean removeCustomer(Long customerId) { Customer customer = getCustomer(customerId); if(customer != null){ customerRepository.delete(customer); return true; } return false; }
[ "public", "boolean", "removeCustomer", "(", "Long", "customerId", ")", "{", "Customer", "customer", "=", "getCustomer", "(", "customerId", ")", ";", "if", "(", "customer", "!=", "null", ")", "{", "customerRepository", ".", "delete", "(", "customer", ")", ";"...
Remove customer from the repository @param customerId the id of the customer @return true if the customer is removed, false if no customer with the given id exists
[ "Remove", "customer", "from", "the", "repository" ]
fdc80f203d68145af3e8d28d13de63ddfa3e6953
https://github.com/MaxxtonGroup/microdocs/blob/fdc80f203d68145af3e8d28d13de63ddfa3e6953/example/customer-service/src/main/java/com/example/service/customer/service/CustomerService.java#L64-L71
train
icode/ameba
src/main/java/ameba/lib/Fibers.java
Fibers.parkAndSerialize
public static void parkAndSerialize(final FiberWriter writer) { try { Fiber.parkAndSerialize(writer); } catch (SuspendExecution e) { throw RuntimeSuspendExecution.of(e); } }
java
public static void parkAndSerialize(final FiberWriter writer) { try { Fiber.parkAndSerialize(writer); } catch (SuspendExecution e) { throw RuntimeSuspendExecution.of(e); } }
[ "public", "static", "void", "parkAndSerialize", "(", "final", "FiberWriter", "writer", ")", "{", "try", "{", "Fiber", ".", "parkAndSerialize", "(", "writer", ")", ";", "}", "catch", "(", "SuspendExecution", "e", ")", "{", "throw", "RuntimeSuspendExecution", "....
Parks the fiber and allows the given callback to serialize it. @param writer a callback that can serialize the fiber.
[ "Parks", "the", "fiber", "and", "allows", "the", "given", "callback", "to", "serialize", "it", "." ]
9d4956e935898e41331b2745e400ef869cd265e0
https://github.com/icode/ameba/blob/9d4956e935898e41331b2745e400ef869cd265e0/src/main/java/ameba/lib/Fibers.java#L178-L184
train
icode/ameba
src/main/java/ameba/lib/Fibers.java
Fibers.unparkSerialized
public static <V> Fiber<V> unparkSerialized(byte[] serFiber, FiberScheduler scheduler) { return Fiber.unparkSerialized(serFiber, scheduler); }
java
public static <V> Fiber<V> unparkSerialized(byte[] serFiber, FiberScheduler scheduler) { return Fiber.unparkSerialized(serFiber, scheduler); }
[ "public", "static", "<", "V", ">", "Fiber", "<", "V", ">", "unparkSerialized", "(", "byte", "[", "]", "serFiber", ",", "FiberScheduler", "scheduler", ")", "{", "return", "Fiber", ".", "unparkSerialized", "(", "serFiber", ",", "scheduler", ")", ";", "}" ]
Deserializes a fiber from the given byte array and unparks it. @param serFiber The byte array containing a fiber's serialized form. @param scheduler The {@link FiberScheduler} to use for scheduling the fiber. @return The deserialized, running fiber.
[ "Deserializes", "a", "fiber", "from", "the", "given", "byte", "array", "and", "unparks", "it", "." ]
9d4956e935898e41331b2745e400ef869cd265e0
https://github.com/icode/ameba/blob/9d4956e935898e41331b2745e400ef869cd265e0/src/main/java/ameba/lib/Fibers.java#L193-L195
train
icode/ameba
src/main/java/ameba/lib/Fibers.java
Fibers.runInFiber
public static <V> V runInFiber(FiberScheduler scheduler, SuspendableCallable<V> target) throws ExecutionException, InterruptedException { return FiberUtil.runInFiber(scheduler, target); }
java
public static <V> V runInFiber(FiberScheduler scheduler, SuspendableCallable<V> target) throws ExecutionException, InterruptedException { return FiberUtil.runInFiber(scheduler, target); }
[ "public", "static", "<", "V", ">", "V", "runInFiber", "(", "FiberScheduler", "scheduler", ",", "SuspendableCallable", "<", "V", ">", "target", ")", "throws", "ExecutionException", ",", "InterruptedException", "{", "return", "FiberUtil", ".", "runInFiber", "(", "...
Runs an action in a new fiber, awaits the fiber's termination, and returns its result. @param <V> @param scheduler the {@link FiberScheduler} to use when scheduling the fiber. @param target the operation @return the operations return value @throws ExecutionException @throws InterruptedException
[ "Runs", "an", "action", "in", "a", "new", "fiber", "awaits", "the", "fiber", "s", "termination", "and", "returns", "its", "result", "." ]
9d4956e935898e41331b2745e400ef869cd265e0
https://github.com/icode/ameba/blob/9d4956e935898e41331b2745e400ef869cd265e0/src/main/java/ameba/lib/Fibers.java#L262-L264
train
icode/ameba
src/main/java/ameba/lib/Fibers.java
Fibers.runInFiber
public static void runInFiber(FiberScheduler scheduler, SuspendableRunnable target) throws ExecutionException, InterruptedException { FiberUtil.runInFiber(scheduler, target); }
java
public static void runInFiber(FiberScheduler scheduler, SuspendableRunnable target) throws ExecutionException, InterruptedException { FiberUtil.runInFiber(scheduler, target); }
[ "public", "static", "void", "runInFiber", "(", "FiberScheduler", "scheduler", ",", "SuspendableRunnable", "target", ")", "throws", "ExecutionException", ",", "InterruptedException", "{", "FiberUtil", ".", "runInFiber", "(", "scheduler", ",", "target", ")", ";", "}" ...
Runs an action in a new fiber and awaits the fiber's termination. @param scheduler the {@link FiberScheduler} to use when scheduling the fiber. @param target the operation @throws ExecutionException @throws InterruptedException
[ "Runs", "an", "action", "in", "a", "new", "fiber", "and", "awaits", "the", "fiber", "s", "termination", "." ]
9d4956e935898e41331b2745e400ef869cd265e0
https://github.com/icode/ameba/blob/9d4956e935898e41331b2745e400ef869cd265e0/src/main/java/ameba/lib/Fibers.java#L287-L289
train
MaxxtonGroup/microdocs
example/order-service/src/main/java/com/example/service/order/controller/OrderController.java
OrderController.getOrder
@RequestMapping(path = "", method = RequestMethod.GET) public Page<Order> getOrder(Pageable pageable) { return orderService.getOrders(pageable); }
java
@RequestMapping(path = "", method = RequestMethod.GET) public Page<Order> getOrder(Pageable pageable) { return orderService.getOrders(pageable); }
[ "@", "RequestMapping", "(", "path", "=", "\"\"", ",", "method", "=", "RequestMethod", ".", "GET", ")", "public", "Page", "<", "Order", ">", "getOrder", "(", "Pageable", "pageable", ")", "{", "return", "orderService", ".", "getOrders", "(", "pageable", ")",...
Get page of orders @param pageable define which page to request @response 200 @return List of orders
[ "Get", "page", "of", "orders" ]
fdc80f203d68145af3e8d28d13de63ddfa3e6953
https://github.com/MaxxtonGroup/microdocs/blob/fdc80f203d68145af3e8d28d13de63ddfa3e6953/example/order-service/src/main/java/com/example/service/order/controller/OrderController.java#L30-L33
train
MaxxtonGroup/microdocs
example/order-service/src/main/java/com/example/service/order/controller/OrderController.java
OrderController.getOrder
@RequestMapping(path = "/{orderId}", method = {RequestMethod.GET, RequestMethod.POST}) public ResponseEntity<Order> getOrder(@PathVariable("orderId") Long orderId) { Order order = orderService.getOrder(orderId); if(order != null){ return new ResponseEntity(order, HttpStatus.OK); } return new ResponseEntity<Order>(HttpStatus.NOT_FOUND); }
java
@RequestMapping(path = "/{orderId}", method = {RequestMethod.GET, RequestMethod.POST}) public ResponseEntity<Order> getOrder(@PathVariable("orderId") Long orderId) { Order order = orderService.getOrder(orderId); if(order != null){ return new ResponseEntity(order, HttpStatus.OK); } return new ResponseEntity<Order>(HttpStatus.NOT_FOUND); }
[ "@", "RequestMapping", "(", "path", "=", "\"/{orderId}\"", ",", "method", "=", "{", "RequestMethod", ".", "GET", ",", "RequestMethod", ".", "POST", "}", ")", "public", "ResponseEntity", "<", "Order", ">", "getOrder", "(", "@", "PathVariable", "(", "\"orderId...
Get order by id @param orderId order id @response 200 @response 404 @return Order or not found
[ "Get", "order", "by", "id" ]
fdc80f203d68145af3e8d28d13de63ddfa3e6953
https://github.com/MaxxtonGroup/microdocs/blob/fdc80f203d68145af3e8d28d13de63ddfa3e6953/example/order-service/src/main/java/com/example/service/order/controller/OrderController.java#L42-L49
train
MaxxtonGroup/microdocs
example/order-service/src/main/java/com/example/service/order/controller/OrderController.java
OrderController.updateStatus
@RequestMapping(path="/{orderId}/status", method = RequestMethod.PUT) public ResponseEntity<Order> updateStatus(@PathVariable("orderId") Long orderId, @RequestParam("status") OrderStatus status){ Order order = orderService.updateStatus(orderId, status); if(order != null){ return new ResponseEntity<Order>(order, HttpStatus.OK); } return new ResponseEntity<Order>(HttpStatus.NOT_FOUND); }
java
@RequestMapping(path="/{orderId}/status", method = RequestMethod.PUT) public ResponseEntity<Order> updateStatus(@PathVariable("orderId") Long orderId, @RequestParam("status") OrderStatus status){ Order order = orderService.updateStatus(orderId, status); if(order != null){ return new ResponseEntity<Order>(order, HttpStatus.OK); } return new ResponseEntity<Order>(HttpStatus.NOT_FOUND); }
[ "@", "RequestMapping", "(", "path", "=", "\"/{orderId}/status\"", ",", "method", "=", "RequestMethod", ".", "PUT", ")", "public", "ResponseEntity", "<", "Order", ">", "updateStatus", "(", "@", "PathVariable", "(", "\"orderId\"", ")", "Long", "orderId", ",", "@...
Update order status @param orderId id of the order @param status new order status @response 200 @response 404 @return Order with the new status
[ "Update", "order", "status" ]
fdc80f203d68145af3e8d28d13de63ddfa3e6953
https://github.com/MaxxtonGroup/microdocs/blob/fdc80f203d68145af3e8d28d13de63ddfa3e6953/example/order-service/src/main/java/com/example/service/order/controller/OrderController.java#L75-L82
train
xebialabs/overcast
src/main/java/com/xebialabs/overcast/support/virtualbox/VirtualboxDriver.java
VirtualboxDriver.vmExists
public boolean vmExists(final String vmOrUuid) { String[] lines = execute("list", "vms").split("\\s"); for (String line : lines) { if (line.endsWith("{" + vmOrUuid + "}") || line.startsWith("\"" + vmOrUuid + "\"")) return true; } return false; }
java
public boolean vmExists(final String vmOrUuid) { String[] lines = execute("list", "vms").split("\\s"); for (String line : lines) { if (line.endsWith("{" + vmOrUuid + "}") || line.startsWith("\"" + vmOrUuid + "\"")) return true; } return false; }
[ "public", "boolean", "vmExists", "(", "final", "String", "vmOrUuid", ")", "{", "String", "[", "]", "lines", "=", "execute", "(", "\"list\"", ",", "\"vms\"", ")", ".", "split", "(", "\"\\\\s\"", ")", ";", "for", "(", "String", "line", ":", "lines", ")",...
Checks if VM exists. Accepts UUID or VM name as an argument.
[ "Checks", "if", "VM", "exists", ".", "Accepts", "UUID", "or", "VM", "name", "as", "an", "argument", "." ]
716e57b66870c9afe51edc3b6045863a34fb0061
https://github.com/xebialabs/overcast/blob/716e57b66870c9afe51edc3b6045863a34fb0061/src/main/java/com/xebialabs/overcast/support/virtualbox/VirtualboxDriver.java#L44-L51
train
xebialabs/overcast
src/main/java/com/xebialabs/overcast/support/virtualbox/VirtualboxDriver.java
VirtualboxDriver.loadSnapshot
public void loadSnapshot(String vm, String snapshotUuid) { if (!EnumSet.of(POWEROFF, SAVED).contains(vmState(vm))) { powerOff(vm); } execute("snapshot", vm, "restore", snapshotUuid); start(vm); }
java
public void loadSnapshot(String vm, String snapshotUuid) { if (!EnumSet.of(POWEROFF, SAVED).contains(vmState(vm))) { powerOff(vm); } execute("snapshot", vm, "restore", snapshotUuid); start(vm); }
[ "public", "void", "loadSnapshot", "(", "String", "vm", ",", "String", "snapshotUuid", ")", "{", "if", "(", "!", "EnumSet", ".", "of", "(", "POWEROFF", ",", "SAVED", ")", ".", "contains", "(", "vmState", "(", "vm", ")", ")", ")", "{", "powerOff", "(",...
Shuts down if running, restores the snapshot and starts VM.
[ "Shuts", "down", "if", "running", "restores", "the", "snapshot", "and", "starts", "VM", "." ]
716e57b66870c9afe51edc3b6045863a34fb0061
https://github.com/xebialabs/overcast/blob/716e57b66870c9afe51edc3b6045863a34fb0061/src/main/java/com/xebialabs/overcast/support/virtualbox/VirtualboxDriver.java#L56-L62
train
xebialabs/overcast
src/main/java/com/xebialabs/overcast/support/virtualbox/VirtualboxDriver.java
VirtualboxDriver.execute
public String execute(String... command) { return commandProcessor.run(aCommand("VBoxManage").withArguments(command)).getOutput(); }
java
public String execute(String... command) { return commandProcessor.run(aCommand("VBoxManage").withArguments(command)).getOutput(); }
[ "public", "String", "execute", "(", "String", "...", "command", ")", "{", "return", "commandProcessor", ".", "run", "(", "aCommand", "(", "\"VBoxManage\"", ")", ".", "withArguments", "(", "command", ")", ")", ".", "getOutput", "(", ")", ";", "}" ]
Executes custom VBoxManage command
[ "Executes", "custom", "VBoxManage", "command" ]
716e57b66870c9afe51edc3b6045863a34fb0061
https://github.com/xebialabs/overcast/blob/716e57b66870c9afe51edc3b6045863a34fb0061/src/main/java/com/xebialabs/overcast/support/virtualbox/VirtualboxDriver.java#L96-L98
train
xebialabs/overcast
src/main/java/com/xebialabs/overcast/support/virtualbox/VirtualboxDriver.java
VirtualboxDriver.setExtraData
public void setExtraData(String vm, String k, String v) { execute("setextradata", vm, k, v); }
java
public void setExtraData(String vm, String k, String v) { execute("setextradata", vm, k, v); }
[ "public", "void", "setExtraData", "(", "String", "vm", ",", "String", "k", ",", "String", "v", ")", "{", "execute", "(", "\"setextradata\"", ",", "vm", ",", "k", ",", "v", ")", ";", "}" ]
Sets extra data on the VM
[ "Sets", "extra", "data", "on", "the", "VM" ]
716e57b66870c9afe51edc3b6045863a34fb0061
https://github.com/xebialabs/overcast/blob/716e57b66870c9afe51edc3b6045863a34fb0061/src/main/java/com/xebialabs/overcast/support/virtualbox/VirtualboxDriver.java#L103-L105
train
threerings/gwt-utils
src/main/java/com/threerings/gwt/util/Value.java
Value.update
public void update (T value) { // store our new current value _value = value; // notify our listeners; we snapshot our listeners before iterating to avoid problems if // listeners add or remove themselves while we're dispatching this notification for (Listener<T> listener : new ArrayList<Listener<T>>(_listeners)) { listener.valueChanged(value); } }
java
public void update (T value) { // store our new current value _value = value; // notify our listeners; we snapshot our listeners before iterating to avoid problems if // listeners add or remove themselves while we're dispatching this notification for (Listener<T> listener : new ArrayList<Listener<T>>(_listeners)) { listener.valueChanged(value); } }
[ "public", "void", "update", "(", "T", "value", ")", "{", "// store our new current value", "_value", "=", "value", ";", "// notify our listeners; we snapshot our listeners before iterating to avoid problems if", "// listeners add or remove themselves while we're dispatching this notifica...
Updates this value and notifies all listeners. This will notify the listeners regardless of whether the supplied value differs from the current value.
[ "Updates", "this", "value", "and", "notifies", "all", "listeners", ".", "This", "will", "notify", "the", "listeners", "regardless", "of", "whether", "the", "supplied", "value", "differs", "from", "the", "current", "value", "." ]
31b31a23b667f2a9c683160d77646db259f2aae5
https://github.com/threerings/gwt-utils/blob/31b31a23b667f2a9c683160d77646db259f2aae5/src/main/java/com/threerings/gwt/util/Value.java#L94-L104
train
threerings/gwt-utils
src/main/java/com/threerings/gwt/ui/PagedWidget.java
PagedWidget.displayPage
public void displayPage (final int page, boolean forceRefresh) { if (_page == page && !forceRefresh) { return; // NOOP! } // Display the now loading widget, if necessary. configureLoadingNavi(_controls, 0, _infoCol); _page = Math.max(page, 0); final boolean overQuery = (_model.getItemCount() < 0); final int count = _resultsPerPage; final int start = _resultsPerPage * page; _model.doFetchRows(start, overQuery ? (count + 1) : count, new AsyncCallback<List<T>>() { public void onSuccess (List<T> result) { if (overQuery) { // if we requested 1 item too many, see if we got it if (result.size() < (count + 1)) { // no: this is the last batch of items, woohoo _lastItem = start + result.size(); } else { // yes: strip it before anybody else gets to see it result.remove(count); _lastItem = -1; } } else { // a valid item count should be available at this point _lastItem = _model.getItemCount(); } displayResults(start, count, result); } public void onFailure (Throwable caught) { reportFailure(caught); } }); }
java
public void displayPage (final int page, boolean forceRefresh) { if (_page == page && !forceRefresh) { return; // NOOP! } // Display the now loading widget, if necessary. configureLoadingNavi(_controls, 0, _infoCol); _page = Math.max(page, 0); final boolean overQuery = (_model.getItemCount() < 0); final int count = _resultsPerPage; final int start = _resultsPerPage * page; _model.doFetchRows(start, overQuery ? (count + 1) : count, new AsyncCallback<List<T>>() { public void onSuccess (List<T> result) { if (overQuery) { // if we requested 1 item too many, see if we got it if (result.size() < (count + 1)) { // no: this is the last batch of items, woohoo _lastItem = start + result.size(); } else { // yes: strip it before anybody else gets to see it result.remove(count); _lastItem = -1; } } else { // a valid item count should be available at this point _lastItem = _model.getItemCount(); } displayResults(start, count, result); } public void onFailure (Throwable caught) { reportFailure(caught); } }); }
[ "public", "void", "displayPage", "(", "final", "int", "page", ",", "boolean", "forceRefresh", ")", "{", "if", "(", "_page", "==", "page", "&&", "!", "forceRefresh", ")", "{", "return", ";", "// NOOP!", "}", "// Display the now loading widget, if necessary.", "co...
Displays the specified page. Does nothing if we are already displaying that page unless forceRefresh is true.
[ "Displays", "the", "specified", "page", ".", "Does", "nothing", "if", "we", "are", "already", "displaying", "that", "page", "unless", "forceRefresh", "is", "true", "." ]
31b31a23b667f2a9c683160d77646db259f2aae5
https://github.com/threerings/gwt-utils/blob/31b31a23b667f2a9c683160d77646db259f2aae5/src/main/java/com/threerings/gwt/ui/PagedWidget.java#L160-L196
train
threerings/gwt-utils
src/main/java/com/threerings/gwt/ui/PagedWidget.java
PagedWidget.removeItem
public void removeItem (T item) { if (_model == null) { return; // if we have no model, stop here } // remove the item from our data model _model.removeItem(item); // force a relayout of this page displayPage(_page, true); }
java
public void removeItem (T item) { if (_model == null) { return; // if we have no model, stop here } // remove the item from our data model _model.removeItem(item); // force a relayout of this page displayPage(_page, true); }
[ "public", "void", "removeItem", "(", "T", "item", ")", "{", "if", "(", "_model", "==", "null", ")", "{", "return", ";", "// if we have no model, stop here", "}", "// remove the item from our data model", "_model", ".", "removeItem", "(", "item", ")", ";", "// fo...
Removes the specified item from the panel. If the item is currently being displayed, its interface element will be removed as well.
[ "Removes", "the", "specified", "item", "from", "the", "panel", ".", "If", "the", "item", "is", "currently", "being", "displayed", "its", "interface", "element", "will", "be", "removed", "as", "well", "." ]
31b31a23b667f2a9c683160d77646db259f2aae5
https://github.com/threerings/gwt-utils/blob/31b31a23b667f2a9c683160d77646db259f2aae5/src/main/java/com/threerings/gwt/ui/PagedWidget.java#L202-L211
train
threerings/gwt-utils
src/main/java/com/threerings/gwt/ui/PagedWidget.java
PagedWidget.configureNavi
protected void configureNavi (FlexTable controls, int row, int col, int start, int limit, int total) { HorizontalPanel panel = new HorizontalPanel(); panel.add(new Label("Page:")); // TODO: i18n // determine which pages we want to show int page = 1+start/_resultsPerPage; int pages; if (total < 0) { pages = page + 1; } else { pages = total/_resultsPerPage + (total%_resultsPerPage == 0 ? 0 : 1); } List<Integer> shown = new ArrayList<Integer>(); shown.add(1); for (int ii = Math.max(2, Math.min(page-2, pages-5)); ii <= Math.min(pages-1, Math.max(page+2, 6)); ii++) { shown.add(ii); } if (pages != 1) { shown.add(pages); } // now display those as "Page: _1_ ... _3_ _4_ 5 _6_ _7_ ... _10_" int ppage = 0; for (Integer cpage : shown) { if (cpage - ppage > 1) { panel.add(createPageLabel("...", null)); } if (cpage == page) { panel.add(createPageLabel(""+page, "Current")); } else { panel.add(createPageLinkLabel(cpage)); } ppage = cpage; } if (total < 0) { panel.add(createPageLabel("...", null)); } controls.setWidget(row, col, panel); controls.getFlexCellFormatter().setHorizontalAlignment(row, col, HasAlignment.ALIGN_CENTER); }
java
protected void configureNavi (FlexTable controls, int row, int col, int start, int limit, int total) { HorizontalPanel panel = new HorizontalPanel(); panel.add(new Label("Page:")); // TODO: i18n // determine which pages we want to show int page = 1+start/_resultsPerPage; int pages; if (total < 0) { pages = page + 1; } else { pages = total/_resultsPerPage + (total%_resultsPerPage == 0 ? 0 : 1); } List<Integer> shown = new ArrayList<Integer>(); shown.add(1); for (int ii = Math.max(2, Math.min(page-2, pages-5)); ii <= Math.min(pages-1, Math.max(page+2, 6)); ii++) { shown.add(ii); } if (pages != 1) { shown.add(pages); } // now display those as "Page: _1_ ... _3_ _4_ 5 _6_ _7_ ... _10_" int ppage = 0; for (Integer cpage : shown) { if (cpage - ppage > 1) { panel.add(createPageLabel("...", null)); } if (cpage == page) { panel.add(createPageLabel(""+page, "Current")); } else { panel.add(createPageLinkLabel(cpage)); } ppage = cpage; } if (total < 0) { panel.add(createPageLabel("...", null)); } controls.setWidget(row, col, panel); controls.getFlexCellFormatter().setHorizontalAlignment(row, col, HasAlignment.ALIGN_CENTER); }
[ "protected", "void", "configureNavi", "(", "FlexTable", "controls", ",", "int", "row", ",", "int", "col", ",", "int", "start", ",", "int", "limit", ",", "int", "total", ")", "{", "HorizontalPanel", "panel", "=", "new", "HorizontalPanel", "(", ")", ";", "...
Get the text that should be shown in the header bar between the "prev" and "next" buttons.
[ "Get", "the", "text", "that", "should", "be", "shown", "in", "the", "header", "bar", "between", "the", "prev", "and", "next", "buttons", "." ]
31b31a23b667f2a9c683160d77646db259f2aae5
https://github.com/threerings/gwt-utils/blob/31b31a23b667f2a9c683160d77646db259f2aae5/src/main/java/com/threerings/gwt/ui/PagedWidget.java#L228-L272
train
threerings/gwt-utils
src/main/java/com/threerings/gwt/ui/PagedWidget.java
PagedWidget.reportFailure
protected void reportFailure (Throwable caught) { java.util.logging.Logger.getLogger("PagedWidget").warning("Failure to page: " + caught); }
java
protected void reportFailure (Throwable caught) { java.util.logging.Logger.getLogger("PagedWidget").warning("Failure to page: " + caught); }
[ "protected", "void", "reportFailure", "(", "Throwable", "caught", ")", "{", "java", ".", "util", ".", "logging", ".", "Logger", ".", "getLogger", "(", "\"PagedWidget\"", ")", ".", "warning", "(", "\"Failure to page: \"", "+", "caught", ")", ";", "}" ]
Report a service failure.
[ "Report", "a", "service", "failure", "." ]
31b31a23b667f2a9c683160d77646db259f2aae5
https://github.com/threerings/gwt-utils/blob/31b31a23b667f2a9c683160d77646db259f2aae5/src/main/java/com/threerings/gwt/ui/PagedWidget.java#L366-L369
train
threerings/gwt-utils
src/main/java/com/threerings/gwt/ui/EscapeClickAdapter.java
EscapeClickAdapter.onKeyPress
public void onKeyPress (KeyPressEvent event) { if (event.getCharCode() == KeyCodes.KEY_ESCAPE) { _onEscape.onClick(null); } }
java
public void onKeyPress (KeyPressEvent event) { if (event.getCharCode() == KeyCodes.KEY_ESCAPE) { _onEscape.onClick(null); } }
[ "public", "void", "onKeyPress", "(", "KeyPressEvent", "event", ")", "{", "if", "(", "event", ".", "getCharCode", "(", ")", "==", "KeyCodes", ".", "KEY_ESCAPE", ")", "{", "_onEscape", ".", "onClick", "(", "null", ")", ";", "}", "}" ]
from interface KeyPressHandler
[ "from", "interface", "KeyPressHandler" ]
31b31a23b667f2a9c683160d77646db259f2aae5
https://github.com/threerings/gwt-utils/blob/31b31a23b667f2a9c683160d77646db259f2aae5/src/main/java/com/threerings/gwt/ui/EscapeClickAdapter.java#L41-L46
train
icode/ameba
src/main/java/ameba/mvc/template/internal/TemplateHelper.java
TemplateHelper.getResourceMethodProducibleTypes
private static List<MediaType> getResourceMethodProducibleTypes(final ExtendedUriInfo extendedUriInfo) { if (extendedUriInfo.getMatchedResourceMethod() != null && !extendedUriInfo.getMatchedResourceMethod().getProducedTypes().isEmpty()) { return extendedUriInfo.getMatchedResourceMethod().getProducedTypes(); } return Collections.singletonList(MediaType.WILDCARD_TYPE); }
java
private static List<MediaType> getResourceMethodProducibleTypes(final ExtendedUriInfo extendedUriInfo) { if (extendedUriInfo.getMatchedResourceMethod() != null && !extendedUriInfo.getMatchedResourceMethod().getProducedTypes().isEmpty()) { return extendedUriInfo.getMatchedResourceMethod().getProducedTypes(); } return Collections.singletonList(MediaType.WILDCARD_TYPE); }
[ "private", "static", "List", "<", "MediaType", ">", "getResourceMethodProducibleTypes", "(", "final", "ExtendedUriInfo", "extendedUriInfo", ")", "{", "if", "(", "extendedUriInfo", ".", "getMatchedResourceMethod", "(", ")", "!=", "null", "&&", "!", "extendedUriInfo", ...
Return a list of producible media types of the last matched resource method. @param extendedUriInfo uri info to obtain resource method from. @return list of producible media types of the last matched resource method.
[ "Return", "a", "list", "of", "producible", "media", "types", "of", "the", "last", "matched", "resource", "method", "." ]
9d4956e935898e41331b2745e400ef869cd265e0
https://github.com/icode/ameba/blob/9d4956e935898e41331b2745e400ef869cd265e0/src/main/java/ameba/mvc/template/internal/TemplateHelper.java#L100-L106
train
icode/ameba
src/main/java/ameba/mvc/template/internal/TemplateHelper.java
TemplateHelper.getTemplateOutputEncoding
public static Charset getTemplateOutputEncoding(Configuration configuration, String suffix) { final String enc = PropertiesHelper.getValue(configuration.getProperties(), MvcFeature.ENCODING + suffix, String.class, null); if (enc == null) { return DEFAULT_ENCODING; } else { return Charset.forName(enc); } }
java
public static Charset getTemplateOutputEncoding(Configuration configuration, String suffix) { final String enc = PropertiesHelper.getValue(configuration.getProperties(), MvcFeature.ENCODING + suffix, String.class, null); if (enc == null) { return DEFAULT_ENCODING; } else { return Charset.forName(enc); } }
[ "public", "static", "Charset", "getTemplateOutputEncoding", "(", "Configuration", "configuration", ",", "String", "suffix", ")", "{", "final", "String", "enc", "=", "PropertiesHelper", ".", "getValue", "(", "configuration", ".", "getProperties", "(", ")", ",", "Mv...
Get output encoding from configuration. @param configuration Configuration. @param suffix Template processor suffix of the to configuration property {@link org.glassfish.jersey.server.mvc.MvcFeature#ENCODING}. @return Encoding read from configuration properties or a default encoding if no encoding is configured.
[ "Get", "output", "encoding", "from", "configuration", "." ]
9d4956e935898e41331b2745e400ef869cd265e0
https://github.com/icode/ameba/blob/9d4956e935898e41331b2745e400ef869cd265e0/src/main/java/ameba/mvc/template/internal/TemplateHelper.java#L152-L160
train
xebialabs/overcast
src/main/java/com/xebialabs/overcast/support/libvirt/jdom/InterfaceXml.java
InterfaceXml.getMacs
public static Map<String, String> getMacs(Document domainXml) { Map<String, String> macs = new HashMap<>(); XPathFactory xpf = XPathFactory.instance(); XPathExpression<Element> interfaces = xpf.compile("/domain/devices/interface", Filters.element()); for (Element iface : interfaces.evaluate(domainXml)) { String interfaceType = iface.getAttribute("type").getValue(); logger.debug("Detecting IP on network of type '{}'", interfaceType); if ("bridge".equals(interfaceType)) { Element macElement = iface.getChild("mac"); String mac = macElement.getAttribute("address").getValue(); Element sourceElement = iface.getChild("source"); String bridge = sourceElement.getAttribute("bridge").getValue(); logger.info("Detected MAC '{}' on bridge '{}'", mac, bridge); macs.put(bridge, mac); } else if ("network".equals(interfaceType)) { Element macElement = iface.getChild("mac"); String mac = macElement.getAttribute("address").getValue(); Element sourceElement = iface.getChild("source"); String network = sourceElement.getAttribute("network").getValue(); logger.info("Detected MAC '{}' on network '{}'", mac, network); macs.put(network, mac); } else { logger.warn("Ignoring network of type {}", interfaceType); } } return macs; }
java
public static Map<String, String> getMacs(Document domainXml) { Map<String, String> macs = new HashMap<>(); XPathFactory xpf = XPathFactory.instance(); XPathExpression<Element> interfaces = xpf.compile("/domain/devices/interface", Filters.element()); for (Element iface : interfaces.evaluate(domainXml)) { String interfaceType = iface.getAttribute("type").getValue(); logger.debug("Detecting IP on network of type '{}'", interfaceType); if ("bridge".equals(interfaceType)) { Element macElement = iface.getChild("mac"); String mac = macElement.getAttribute("address").getValue(); Element sourceElement = iface.getChild("source"); String bridge = sourceElement.getAttribute("bridge").getValue(); logger.info("Detected MAC '{}' on bridge '{}'", mac, bridge); macs.put(bridge, mac); } else if ("network".equals(interfaceType)) { Element macElement = iface.getChild("mac"); String mac = macElement.getAttribute("address").getValue(); Element sourceElement = iface.getChild("source"); String network = sourceElement.getAttribute("network").getValue(); logger.info("Detected MAC '{}' on network '{}'", mac, network); macs.put(network, mac); } else { logger.warn("Ignoring network of type {}", interfaceType); } } return macs; }
[ "public", "static", "Map", "<", "String", ",", "String", ">", "getMacs", "(", "Document", "domainXml", ")", "{", "Map", "<", "String", ",", "String", ">", "macs", "=", "new", "HashMap", "<>", "(", ")", ";", "XPathFactory", "xpf", "=", "XPathFactory", "...
Get a map of mac addresses of interfaces defined on the domain. This is somewhat limited at the moment. It is assumed that only one network interface with mac is connected to a bridge or network. For instance if you have a bridged network device connected to 'br0' then you will find it's MAC address with the key 'br0'.
[ "Get", "a", "map", "of", "mac", "addresses", "of", "interfaces", "defined", "on", "the", "domain", ".", "This", "is", "somewhat", "limited", "at", "the", "moment", ".", "It", "is", "assumed", "that", "only", "one", "network", "interface", "with", "mac", ...
716e57b66870c9afe51edc3b6045863a34fb0061
https://github.com/xebialabs/overcast/blob/716e57b66870c9afe51edc3b6045863a34fb0061/src/main/java/com/xebialabs/overcast/support/libvirt/jdom/InterfaceXml.java#L40-L66
train
ebean-orm/ebean-mocker
src/main/java/io/ebean/MockiEbean.java
MockiEbean.runWithMock
public static <V> V runWithMock(EbeanServer mock, Callable<V> test) throws Exception { return start(mock).run(test); }
java
public static <V> V runWithMock(EbeanServer mock, Callable<V> test) throws Exception { return start(mock).run(test); }
[ "public", "static", "<", "V", ">", "V", "runWithMock", "(", "EbeanServer", "mock", ",", "Callable", "<", "V", ">", "test", ")", "throws", "Exception", "{", "return", "start", "(", "mock", ")", ".", "run", "(", "test", ")", ";", "}" ]
Run the test runnable using the mock EbeanServer and restoring the original EbeanServer afterward. @param mock the mock instance that becomes the default EbeanServer @param test typically some test code as a callable
[ "Run", "the", "test", "runnable", "using", "the", "mock", "EbeanServer", "and", "restoring", "the", "original", "EbeanServer", "afterward", "." ]
98c14a58253e8cd40b2a0c9b49526a307079389a
https://github.com/ebean-orm/ebean-mocker/blob/98c14a58253e8cd40b2a0c9b49526a307079389a/src/main/java/io/ebean/MockiEbean.java#L107-L110
train
ebean-orm/ebean-mocker
src/main/java/io/ebean/MockiEbean.java
MockiEbean.run
public <V> V run(Callable<V> testCallable) throws Exception { try { beforeRun(); return testCallable.call(); } finally { afterRun(); restoreOriginal(); } }
java
public <V> V run(Callable<V> testCallable) throws Exception { try { beforeRun(); return testCallable.call(); } finally { afterRun(); restoreOriginal(); } }
[ "public", "<", "V", ">", "V", "run", "(", "Callable", "<", "V", ">", "testCallable", ")", "throws", "Exception", "{", "try", "{", "beforeRun", "(", ")", ";", "return", "testCallable", ".", "call", "(", ")", ";", "}", "finally", "{", "afterRun", "(", ...
Run the test callable restoring the original EbeanServer afterwards.
[ "Run", "the", "test", "callable", "restoring", "the", "original", "EbeanServer", "afterwards", "." ]
98c14a58253e8cd40b2a0c9b49526a307079389a
https://github.com/ebean-orm/ebean-mocker/blob/98c14a58253e8cd40b2a0c9b49526a307079389a/src/main/java/io/ebean/MockiEbean.java#L164-L172
train
ebean-orm/ebean-mocker
src/main/java/io/ebean/MockiEbean.java
MockiEbean.restoreOriginal
public void restoreOriginal() { if (original == null) { throw new IllegalStateException("Original EbeanServer instance is null"); } if (original.getName() == null) { throw new IllegalStateException("Original EbeanServer name is null"); } // restore the original EbeanServer back Ebean.mock(original.getName(), original, true); }
java
public void restoreOriginal() { if (original == null) { throw new IllegalStateException("Original EbeanServer instance is null"); } if (original.getName() == null) { throw new IllegalStateException("Original EbeanServer name is null"); } // restore the original EbeanServer back Ebean.mock(original.getName(), original, true); }
[ "public", "void", "restoreOriginal", "(", ")", "{", "if", "(", "original", "==", "null", ")", "{", "throw", "new", "IllegalStateException", "(", "\"Original EbeanServer instance is null\"", ")", ";", "}", "if", "(", "original", ".", "getName", "(", ")", "==", ...
Restore the original EbeanServer implementation as the default EbeanServer.
[ "Restore", "the", "original", "EbeanServer", "implementation", "as", "the", "default", "EbeanServer", "." ]
98c14a58253e8cd40b2a0c9b49526a307079389a
https://github.com/ebean-orm/ebean-mocker/blob/98c14a58253e8cd40b2a0c9b49526a307079389a/src/main/java/io/ebean/MockiEbean.java#L200-L210
train
icode/ameba
src/main/java/ameba/db/ebean/internal/ModelInterceptor.java
ModelInterceptor.getSingleIntegerParam
protected static Integer getSingleIntegerParam(List<String> list) { String s = getSingleParam(list); if (s != null) { try { return Integer.valueOf(s); } catch (NumberFormatException e) { return null; } } return null; }
java
protected static Integer getSingleIntegerParam(List<String> list) { String s = getSingleParam(list); if (s != null) { try { return Integer.valueOf(s); } catch (NumberFormatException e) { return null; } } return null; }
[ "protected", "static", "Integer", "getSingleIntegerParam", "(", "List", "<", "String", ">", "list", ")", "{", "String", "s", "=", "getSingleParam", "(", "list", ")", ";", "if", "(", "s", "!=", "null", ")", "{", "try", "{", "return", "Integer", ".", "va...
Return a single Integer parameter. @param list a {@link java.util.List} object. @return a {@link java.lang.Integer} object.
[ "Return", "a", "single", "Integer", "parameter", "." ]
9d4956e935898e41331b2745e400ef869cd265e0
https://github.com/icode/ameba/blob/9d4956e935898e41331b2745e400ef869cd265e0/src/main/java/ameba/db/ebean/internal/ModelInterceptor.java#L143-L153
train
icode/ameba
src/main/java/ameba/db/ebean/internal/ModelInterceptor.java
ModelInterceptor.getSingleParam
protected static String getSingleParam(List<String> list) { if (list != null && list.size() == 1) { return list.get(0); } return null; }
java
protected static String getSingleParam(List<String> list) { if (list != null && list.size() == 1) { return list.get(0); } return null; }
[ "protected", "static", "String", "getSingleParam", "(", "List", "<", "String", ">", "list", ")", "{", "if", "(", "list", "!=", "null", "&&", "list", ".", "size", "(", ")", "==", "1", ")", "{", "return", "list", ".", "get", "(", "0", ")", ";", "}"...
Return a single parameter value. @param list a {@link java.util.List} object. @return a {@link java.lang.String} object.
[ "Return", "a", "single", "parameter", "value", "." ]
9d4956e935898e41331b2745e400ef869cd265e0
https://github.com/icode/ameba/blob/9d4956e935898e41331b2745e400ef869cd265e0/src/main/java/ameba/db/ebean/internal/ModelInterceptor.java#L161-L166
train
threerings/gwt-utils
src/main/java/com/threerings/gwt/ui/InputUtil.java
InputUtil.requireNonEmpty
public static <T extends FocusWidget & HasText> String requireNonEmpty (T widget, String error) { String text = widget.getText().trim(); if (text.length() == 0) { Popups.errorBelow(error, widget); widget.setFocus(true); throw new InputException(); } return text; }
java
public static <T extends FocusWidget & HasText> String requireNonEmpty (T widget, String error) { String text = widget.getText().trim(); if (text.length() == 0) { Popups.errorBelow(error, widget); widget.setFocus(true); throw new InputException(); } return text; }
[ "public", "static", "<", "T", "extends", "FocusWidget", "&", "HasText", ">", "String", "requireNonEmpty", "(", "T", "widget", ",", "String", "error", ")", "{", "String", "text", "=", "widget", ".", "getText", "(", ")", ".", "trim", "(", ")", ";", "if",...
Returns a text widget's value, making sure it is non-empty. @throws InputException if the widget has no text
[ "Returns", "a", "text", "widget", "s", "value", "making", "sure", "it", "is", "non", "-", "empty", "." ]
31b31a23b667f2a9c683160d77646db259f2aae5
https://github.com/threerings/gwt-utils/blob/31b31a23b667f2a9c683160d77646db259f2aae5/src/main/java/com/threerings/gwt/ui/InputUtil.java#L23-L32
train
alexvasilkov/Events
sample/src/main/java/com/alexvasilkov/events/sample/ui/util/Tints.java
Tints.tint
public static void tint(View view, Tint tint) { final ColorStateList color = tint.getColor(view.getContext()); if (view instanceof ImageView) { tint(((ImageView) view).getDrawable(), color); } else if (view instanceof TextView) { TextView text = (TextView) view; Drawable[] comp = text.getCompoundDrawables(); for (int i = 0; i < comp.length; i++) { if (comp[i] != null) { comp[i] = tint(comp[i], color); } } text.setCompoundDrawablesWithIntrinsicBounds(comp[0], comp[1], comp[2], comp[3]); } else { throw new IllegalArgumentException("Unsupported view type"); } }
java
public static void tint(View view, Tint tint) { final ColorStateList color = tint.getColor(view.getContext()); if (view instanceof ImageView) { tint(((ImageView) view).getDrawable(), color); } else if (view instanceof TextView) { TextView text = (TextView) view; Drawable[] comp = text.getCompoundDrawables(); for (int i = 0; i < comp.length; i++) { if (comp[i] != null) { comp[i] = tint(comp[i], color); } } text.setCompoundDrawablesWithIntrinsicBounds(comp[0], comp[1], comp[2], comp[3]); } else { throw new IllegalArgumentException("Unsupported view type"); } }
[ "public", "static", "void", "tint", "(", "View", "view", ",", "Tint", "tint", ")", "{", "final", "ColorStateList", "color", "=", "tint", ".", "getColor", "(", "view", ".", "getContext", "(", ")", ")", ";", "if", "(", "view", "instanceof", "ImageView", ...
Tints ImageView drawable or TextView compound drawables to given tint color.
[ "Tints", "ImageView", "drawable", "or", "TextView", "compound", "drawables", "to", "given", "tint", "color", "." ]
4208e11fab35d99229fe6c3b3d434ca1948f3fc5
https://github.com/alexvasilkov/Events/blob/4208e11fab35d99229fe6c3b3d434ca1948f3fc5/sample/src/main/java/com/alexvasilkov/events/sample/ui/util/Tints.java#L69-L86
train
xebialabs/overcast
src/main/java/com/xebialabs/overcast/support/libvirt/DomainWrapper.java
DomainWrapper.cloneWithBackingStore
public DomainWrapper cloneWithBackingStore(String cloneName, List<Filesystem> mappings) { logger.info("Creating clone from {}", getName()); try { // duplicate definition of base Document cloneXmlDocument = domainXml.clone(); setDomainName(cloneXmlDocument, cloneName); prepareForCloning(cloneXmlDocument); // keep track of who we are a clone from... updateCloneMetadata(cloneXmlDocument, getName(), new Date()); cloneDisks(cloneXmlDocument, cloneName); updateFilesystemMappings(cloneXmlDocument, mappings); String cloneXml = documentToString(cloneXmlDocument); logger.debug("Clone xml={}", cloneXml); // Domain cloneDomain = domain.getConnect().domainCreateXML(cloneXml, 0); Domain cloneDomain = domain.getConnect().domainDefineXML(cloneXml); String createdCloneXml = cloneDomain.getXMLDesc(0); logger.debug("Created clone xml: {}", createdCloneXml); cloneDomain.create(); logger.debug("Starting clone: '{}'", cloneDomain.getName()); return newWrapper(cloneDomain); } catch (IOException | LibvirtException e) { throw new LibvirtRuntimeException("Unable to clone domain", e); } }
java
public DomainWrapper cloneWithBackingStore(String cloneName, List<Filesystem> mappings) { logger.info("Creating clone from {}", getName()); try { // duplicate definition of base Document cloneXmlDocument = domainXml.clone(); setDomainName(cloneXmlDocument, cloneName); prepareForCloning(cloneXmlDocument); // keep track of who we are a clone from... updateCloneMetadata(cloneXmlDocument, getName(), new Date()); cloneDisks(cloneXmlDocument, cloneName); updateFilesystemMappings(cloneXmlDocument, mappings); String cloneXml = documentToString(cloneXmlDocument); logger.debug("Clone xml={}", cloneXml); // Domain cloneDomain = domain.getConnect().domainCreateXML(cloneXml, 0); Domain cloneDomain = domain.getConnect().domainDefineXML(cloneXml); String createdCloneXml = cloneDomain.getXMLDesc(0); logger.debug("Created clone xml: {}", createdCloneXml); cloneDomain.create(); logger.debug("Starting clone: '{}'", cloneDomain.getName()); return newWrapper(cloneDomain); } catch (IOException | LibvirtException e) { throw new LibvirtRuntimeException("Unable to clone domain", e); } }
[ "public", "DomainWrapper", "cloneWithBackingStore", "(", "String", "cloneName", ",", "List", "<", "Filesystem", ">", "mappings", ")", "{", "logger", ".", "info", "(", "\"Creating clone from {}\"", ",", "getName", "(", ")", ")", ";", "try", "{", "// duplicate def...
Clone the domain. All disks are cloned using the original disk as backing store. The names of the disks are created by suffixing the original disk name with a number.
[ "Clone", "the", "domain", ".", "All", "disks", "are", "cloned", "using", "the", "original", "disk", "as", "backing", "store", ".", "The", "names", "of", "the", "disks", "are", "created", "by", "suffixing", "the", "original", "disk", "name", "with", "a", ...
716e57b66870c9afe51edc3b6045863a34fb0061
https://github.com/xebialabs/overcast/blob/716e57b66870c9afe51edc3b6045863a34fb0061/src/main/java/com/xebialabs/overcast/support/libvirt/DomainWrapper.java#L108-L139
train
threerings/gwt-utils
src/main/java/com/threerings/gwt/util/SimpleDataModel.java
SimpleDataModel.newModel
public static <T> SimpleDataModel<T> newModel (List<T> items) { return new SimpleDataModel<T>(items); }
java
public static <T> SimpleDataModel<T> newModel (List<T> items) { return new SimpleDataModel<T>(items); }
[ "public", "static", "<", "T", ">", "SimpleDataModel", "<", "T", ">", "newModel", "(", "List", "<", "T", ">", "items", ")", "{", "return", "new", "SimpleDataModel", "<", "T", ">", "(", "items", ")", ";", "}" ]
Creates a new simple data model with the supplied list of items.
[ "Creates", "a", "new", "simple", "data", "model", "with", "the", "supplied", "list", "of", "items", "." ]
31b31a23b667f2a9c683160d77646db259f2aae5
https://github.com/threerings/gwt-utils/blob/31b31a23b667f2a9c683160d77646db259f2aae5/src/main/java/com/threerings/gwt/util/SimpleDataModel.java#L40-L43
train
threerings/gwt-utils
src/main/java/com/threerings/gwt/util/SimpleDataModel.java
SimpleDataModel.filter
public SimpleDataModel<T> filter (Predicate<T> pred) { // if (Predicates.alwaysTrue().equals(pred)) { // return this; // optimization // } List<T> items = new ArrayList<T>(); for (T item : _items) { if (pred.apply(item)) { items.add(item); } } return createFilteredModel(items); }
java
public SimpleDataModel<T> filter (Predicate<T> pred) { // if (Predicates.alwaysTrue().equals(pred)) { // return this; // optimization // } List<T> items = new ArrayList<T>(); for (T item : _items) { if (pred.apply(item)) { items.add(item); } } return createFilteredModel(items); }
[ "public", "SimpleDataModel", "<", "T", ">", "filter", "(", "Predicate", "<", "T", ">", "pred", ")", "{", "// if (Predicates.alwaysTrue().equals(pred)) {", "// return this; // optimization", "// }", "List", "<", "T", ">", "items", "=", "new", "...
Returns a data model that contains only items that match the supplied predicate.
[ "Returns", "a", "data", "model", "that", "contains", "only", "items", "that", "match", "the", "supplied", "predicate", "." ]
31b31a23b667f2a9c683160d77646db259f2aae5
https://github.com/threerings/gwt-utils/blob/31b31a23b667f2a9c683160d77646db259f2aae5/src/main/java/com/threerings/gwt/util/SimpleDataModel.java#L56-L68
train
threerings/gwt-utils
src/main/java/com/threerings/gwt/util/SimpleDataModel.java
SimpleDataModel.addItem
public void addItem (int index, T item) { if (_items == null) { return; } _items.add(index, item); }
java
public void addItem (int index, T item) { if (_items == null) { return; } _items.add(index, item); }
[ "public", "void", "addItem", "(", "int", "index", ",", "T", "item", ")", "{", "if", "(", "_items", "==", "null", ")", "{", "return", ";", "}", "_items", ".", "add", "(", "index", ",", "item", ")", ";", "}" ]
Adds an item to this model. Does not force the refresh of any display.
[ "Adds", "an", "item", "to", "this", "model", ".", "Does", "not", "force", "the", "refresh", "of", "any", "display", "." ]
31b31a23b667f2a9c683160d77646db259f2aae5
https://github.com/threerings/gwt-utils/blob/31b31a23b667f2a9c683160d77646db259f2aae5/src/main/java/com/threerings/gwt/util/SimpleDataModel.java#L73-L79
train
threerings/gwt-utils
src/main/java/com/threerings/gwt/util/SimpleDataModel.java
SimpleDataModel.updateItem
public void updateItem (T item) { if (_items == null) { return; } int idx = _items.indexOf(item); if (idx == -1) { _items.add(0, item); } else { _items.set(idx, item); } }
java
public void updateItem (T item) { if (_items == null) { return; } int idx = _items.indexOf(item); if (idx == -1) { _items.add(0, item); } else { _items.set(idx, item); } }
[ "public", "void", "updateItem", "(", "T", "item", ")", "{", "if", "(", "_items", "==", "null", ")", "{", "return", ";", "}", "int", "idx", "=", "_items", ".", "indexOf", "(", "item", ")", ";", "if", "(", "idx", "==", "-", "1", ")", "{", "_items...
Updates the specified item if found in the model, prepends it otherwise.
[ "Updates", "the", "specified", "item", "if", "found", "in", "the", "model", "prepends", "it", "otherwise", "." ]
31b31a23b667f2a9c683160d77646db259f2aae5
https://github.com/threerings/gwt-utils/blob/31b31a23b667f2a9c683160d77646db259f2aae5/src/main/java/com/threerings/gwt/util/SimpleDataModel.java#L84-L95
train
threerings/gwt-utils
src/main/java/com/threerings/gwt/util/SimpleDataModel.java
SimpleDataModel.findItem
public T findItem (Predicate<T> p) { if (_items == null) { return null; } for (T item : _items) { if (p.apply(item)) { return item; } } return null; }
java
public T findItem (Predicate<T> p) { if (_items == null) { return null; } for (T item : _items) { if (p.apply(item)) { return item; } } return null; }
[ "public", "T", "findItem", "(", "Predicate", "<", "T", ">", "p", ")", "{", "if", "(", "_items", "==", "null", ")", "{", "return", "null", ";", "}", "for", "(", "T", "item", ":", "_items", ")", "{", "if", "(", "p", ".", "apply", "(", "item", "...
Returns the first item that matches the supplied predicate or null if no items in this model matches the predicate.
[ "Returns", "the", "first", "item", "that", "matches", "the", "supplied", "predicate", "or", "null", "if", "no", "items", "in", "this", "model", "matches", "the", "predicate", "." ]
31b31a23b667f2a9c683160d77646db259f2aae5
https://github.com/threerings/gwt-utils/blob/31b31a23b667f2a9c683160d77646db259f2aae5/src/main/java/com/threerings/gwt/util/SimpleDataModel.java#L101-L112
train
icode/ameba
src/main/java/ameba/db/ebean/EbeanFinder.java
EbeanFinder.byId
@SuppressWarnings("unchecked") public <M extends T> M byId(ID id) { return (M) server().find(getModelType(), id); }
java
@SuppressWarnings("unchecked") public <M extends T> M byId(ID id) { return (M) server().find(getModelType(), id); }
[ "@", "SuppressWarnings", "(", "\"unchecked\"", ")", "public", "<", "M", "extends", "T", ">", "M", "byId", "(", "ID", "id", ")", "{", "return", "(", "M", ")", "server", "(", ")", ".", "find", "(", "getModelType", "(", ")", ",", "id", ")", ";", "}"...
Retrieves an entity by ID. @param id a ID object. @return a M object.
[ "Retrieves", "an", "entity", "by", "ID", "." ]
9d4956e935898e41331b2745e400ef869cd265e0
https://github.com/icode/ameba/blob/9d4956e935898e41331b2745e400ef869cd265e0/src/main/java/ameba/db/ebean/EbeanFinder.java#L69-L72
train
icode/ameba
src/main/java/ameba/db/ebean/EbeanFinder.java
EbeanFinder.ref
@SuppressWarnings("unchecked") public <M extends T> M ref(ID id) { return (M) server().getReference(getModelType(), id); }
java
@SuppressWarnings("unchecked") public <M extends T> M ref(ID id) { return (M) server().getReference(getModelType(), id); }
[ "@", "SuppressWarnings", "(", "\"unchecked\"", ")", "public", "<", "M", "extends", "T", ">", "M", "ref", "(", "ID", "id", ")", "{", "return", "(", "M", ")", "server", "(", ")", ".", "getReference", "(", "getModelType", "(", ")", ",", "id", ")", ";"...
Retrieves an entity reference for this ID. @param id a ID object. @return a M object.
[ "Retrieves", "an", "entity", "reference", "for", "this", "ID", "." ]
9d4956e935898e41331b2745e400ef869cd265e0
https://github.com/icode/ameba/blob/9d4956e935898e41331b2745e400ef869cd265e0/src/main/java/ameba/db/ebean/EbeanFinder.java#L80-L83
train
icode/ameba
src/main/java/ameba/db/ebean/EbeanFinder.java
EbeanFinder.findMap
@SuppressWarnings("unchecked") public <M extends T> Map<?, M> findMap() { return (Map<?, M>) query().findMap(); }
java
@SuppressWarnings("unchecked") public <M extends T> Map<?, M> findMap() { return (Map<?, M>) query().findMap(); }
[ "@", "SuppressWarnings", "(", "\"unchecked\"", ")", "public", "<", "M", "extends", "T", ">", "Map", "<", "?", ",", "M", ">", "findMap", "(", ")", "{", "return", "(", "Map", "<", "?", ",", "M", ">", ")", "query", "(", ")", ".", "findMap", "(", "...
Executes the query and returns the results as a map of objects. @return a {@link java.util.Map} object.
[ "Executes", "the", "query", "and", "returns", "the", "results", "as", "a", "map", "of", "objects", "." ]
9d4956e935898e41331b2745e400ef869cd265e0
https://github.com/icode/ameba/blob/9d4956e935898e41331b2745e400ef869cd265e0/src/main/java/ameba/db/ebean/EbeanFinder.java#L251-L254
train
icode/ameba
src/main/java/ameba/db/ebean/EbeanFinder.java
EbeanFinder.findSet
@SuppressWarnings("unchecked") public <M extends T> Set<M> findSet() { return (Set<M>) query().findSet(); }
java
@SuppressWarnings("unchecked") public <M extends T> Set<M> findSet() { return (Set<M>) query().findSet(); }
[ "@", "SuppressWarnings", "(", "\"unchecked\"", ")", "public", "<", "M", "extends", "T", ">", "Set", "<", "M", ">", "findSet", "(", ")", "{", "return", "(", "Set", "<", "M", ">", ")", "query", "(", ")", ".", "findSet", "(", ")", ";", "}" ]
Executes the query and returns the results as a set of objects. @return a {@link java.util.Set} object.
[ "Executes", "the", "query", "and", "returns", "the", "results", "as", "a", "set", "of", "objects", "." ]
9d4956e935898e41331b2745e400ef869cd265e0
https://github.com/icode/ameba/blob/9d4956e935898e41331b2745e400ef869cd265e0/src/main/java/ameba/db/ebean/EbeanFinder.java#L279-L282
train
threerings/gwt-utils
src/main/java/com/threerings/gwt/ui/Widgets.java
Widgets.newSimplePanel
public static SimplePanel newSimplePanel (String styleName, Widget widget) { SimplePanel panel = new SimplePanel(); if (widget != null) { panel.setWidget(widget); } return setStyleNames(panel, styleName); }
java
public static SimplePanel newSimplePanel (String styleName, Widget widget) { SimplePanel panel = new SimplePanel(); if (widget != null) { panel.setWidget(widget); } return setStyleNames(panel, styleName); }
[ "public", "static", "SimplePanel", "newSimplePanel", "(", "String", "styleName", ",", "Widget", "widget", ")", "{", "SimplePanel", "panel", "=", "new", "SimplePanel", "(", ")", ";", "if", "(", "widget", "!=", "null", ")", "{", "panel", ".", "setWidget", "(...
Creates a SimplePanel with the supplied style and widget
[ "Creates", "a", "SimplePanel", "with", "the", "supplied", "style", "and", "widget" ]
31b31a23b667f2a9c683160d77646db259f2aae5
https://github.com/threerings/gwt-utils/blob/31b31a23b667f2a9c683160d77646db259f2aae5/src/main/java/com/threerings/gwt/ui/Widgets.java#L58-L65
train
threerings/gwt-utils
src/main/java/com/threerings/gwt/ui/Widgets.java
Widgets.newFlowPanel
public static FlowPanel newFlowPanel (String styleName, Widget... contents) { FlowPanel panel = new FlowPanel(); for (Widget child : contents) { if (child != null) { panel.add(child); } } return setStyleNames(panel, styleName); }
java
public static FlowPanel newFlowPanel (String styleName, Widget... contents) { FlowPanel panel = new FlowPanel(); for (Widget child : contents) { if (child != null) { panel.add(child); } } return setStyleNames(panel, styleName); }
[ "public", "static", "FlowPanel", "newFlowPanel", "(", "String", "styleName", ",", "Widget", "...", "contents", ")", "{", "FlowPanel", "panel", "=", "new", "FlowPanel", "(", ")", ";", "for", "(", "Widget", "child", ":", "contents", ")", "{", "if", "(", "c...
Creates a FlowPanel with the provided style and widgets.
[ "Creates", "a", "FlowPanel", "with", "the", "provided", "style", "and", "widgets", "." ]
31b31a23b667f2a9c683160d77646db259f2aae5
https://github.com/threerings/gwt-utils/blob/31b31a23b667f2a9c683160d77646db259f2aae5/src/main/java/com/threerings/gwt/ui/Widgets.java#L78-L87
train
threerings/gwt-utils
src/main/java/com/threerings/gwt/ui/Widgets.java
Widgets.newScrollPanelX
public static ScrollPanel newScrollPanelX (Widget contents, int maxWidth) { ScrollPanel panel = new ScrollPanel(contents); DOM.setStyleAttribute(panel.getElement(), "maxWidth", maxWidth + "px"); return panel; }
java
public static ScrollPanel newScrollPanelX (Widget contents, int maxWidth) { ScrollPanel panel = new ScrollPanel(contents); DOM.setStyleAttribute(panel.getElement(), "maxWidth", maxWidth + "px"); return panel; }
[ "public", "static", "ScrollPanel", "newScrollPanelX", "(", "Widget", "contents", ",", "int", "maxWidth", ")", "{", "ScrollPanel", "panel", "=", "new", "ScrollPanel", "(", "contents", ")", ";", "DOM", ".", "setStyleAttribute", "(", "panel", ".", "getElement", "...
Wraps the supplied contents in a scroll panel with the specified maximum width.
[ "Wraps", "the", "supplied", "contents", "in", "a", "scroll", "panel", "with", "the", "specified", "maximum", "width", "." ]
31b31a23b667f2a9c683160d77646db259f2aae5
https://github.com/threerings/gwt-utils/blob/31b31a23b667f2a9c683160d77646db259f2aae5/src/main/java/com/threerings/gwt/ui/Widgets.java#L119-L124
train
threerings/gwt-utils
src/main/java/com/threerings/gwt/ui/Widgets.java
Widgets.newScrollPanelY
public static ScrollPanel newScrollPanelY (Widget contents, int maxHeight) { ScrollPanel panel = new ScrollPanel(contents); DOM.setStyleAttribute(panel.getElement(), "maxHeight", maxHeight + "px"); return panel; }
java
public static ScrollPanel newScrollPanelY (Widget contents, int maxHeight) { ScrollPanel panel = new ScrollPanel(contents); DOM.setStyleAttribute(panel.getElement(), "maxHeight", maxHeight + "px"); return panel; }
[ "public", "static", "ScrollPanel", "newScrollPanelY", "(", "Widget", "contents", ",", "int", "maxHeight", ")", "{", "ScrollPanel", "panel", "=", "new", "ScrollPanel", "(", "contents", ")", ";", "DOM", ".", "setStyleAttribute", "(", "panel", ".", "getElement", ...
Wraps the supplied contents in a scroll panel with the specified maximum height.
[ "Wraps", "the", "supplied", "contents", "in", "a", "scroll", "panel", "with", "the", "specified", "maximum", "height", "." ]
31b31a23b667f2a9c683160d77646db259f2aae5
https://github.com/threerings/gwt-utils/blob/31b31a23b667f2a9c683160d77646db259f2aae5/src/main/java/com/threerings/gwt/ui/Widgets.java#L129-L134
train
threerings/gwt-utils
src/main/java/com/threerings/gwt/ui/Widgets.java
Widgets.newRow
public static HorizontalPanel newRow (String styleName, Widget... contents) { return newRow(HasAlignment.ALIGN_MIDDLE, styleName, contents); }
java
public static HorizontalPanel newRow (String styleName, Widget... contents) { return newRow(HasAlignment.ALIGN_MIDDLE, styleName, contents); }
[ "public", "static", "HorizontalPanel", "newRow", "(", "String", "styleName", ",", "Widget", "...", "contents", ")", "{", "return", "newRow", "(", "HasAlignment", ".", "ALIGN_MIDDLE", ",", "styleName", ",", "contents", ")", ";", "}" ]
Creates a row of widgets in a horizontal panel with a 5 pixel gap between them.
[ "Creates", "a", "row", "of", "widgets", "in", "a", "horizontal", "panel", "with", "a", "5", "pixel", "gap", "between", "them", "." ]
31b31a23b667f2a9c683160d77646db259f2aae5
https://github.com/threerings/gwt-utils/blob/31b31a23b667f2a9c683160d77646db259f2aae5/src/main/java/com/threerings/gwt/ui/Widgets.java#L147-L150
train
threerings/gwt-utils
src/main/java/com/threerings/gwt/ui/Widgets.java
Widgets.newRow
public static HorizontalPanel newRow (HasAlignment.VerticalAlignmentConstant valign, String styleName, Widget... contents) { HorizontalPanel row = new HorizontalPanel(); row.setVerticalAlignment(valign); if (styleName != null) { row.setStyleName(styleName); } for (Widget widget : contents) { if (widget != null) { if (row.getWidgetCount() > 0) { row.add(newShim(5, 5)); } row.add(widget); } } return row; }
java
public static HorizontalPanel newRow (HasAlignment.VerticalAlignmentConstant valign, String styleName, Widget... contents) { HorizontalPanel row = new HorizontalPanel(); row.setVerticalAlignment(valign); if (styleName != null) { row.setStyleName(styleName); } for (Widget widget : contents) { if (widget != null) { if (row.getWidgetCount() > 0) { row.add(newShim(5, 5)); } row.add(widget); } } return row; }
[ "public", "static", "HorizontalPanel", "newRow", "(", "HasAlignment", ".", "VerticalAlignmentConstant", "valign", ",", "String", "styleName", ",", "Widget", "...", "contents", ")", "{", "HorizontalPanel", "row", "=", "new", "HorizontalPanel", "(", ")", ";", "row",...
Creates a row of widgets in a horizontal panel with a 5 pixel gap between them. The supplied style name is added to the container panel.
[ "Creates", "a", "row", "of", "widgets", "in", "a", "horizontal", "panel", "with", "a", "5", "pixel", "gap", "between", "them", ".", "The", "supplied", "style", "name", "is", "added", "to", "the", "container", "panel", "." ]
31b31a23b667f2a9c683160d77646db259f2aae5
https://github.com/threerings/gwt-utils/blob/31b31a23b667f2a9c683160d77646db259f2aae5/src/main/java/com/threerings/gwt/ui/Widgets.java#L156-L173
train
threerings/gwt-utils
src/main/java/com/threerings/gwt/ui/Widgets.java
Widgets.newLabel
public static Label newLabel (String text, String... styles) { return setStyleNames(new Label(text), styles); }
java
public static Label newLabel (String text, String... styles) { return setStyleNames(new Label(text), styles); }
[ "public", "static", "Label", "newLabel", "(", "String", "text", ",", "String", "...", "styles", ")", "{", "return", "setStyleNames", "(", "new", "Label", "(", "text", ")", ",", "styles", ")", ";", "}" ]
Creates a label with the supplied text and style and optional additional styles.
[ "Creates", "a", "label", "with", "the", "supplied", "text", "and", "style", "and", "optional", "additional", "styles", "." ]
31b31a23b667f2a9c683160d77646db259f2aae5
https://github.com/threerings/gwt-utils/blob/31b31a23b667f2a9c683160d77646db259f2aae5/src/main/java/com/threerings/gwt/ui/Widgets.java#L178-L181
train
threerings/gwt-utils
src/main/java/com/threerings/gwt/ui/Widgets.java
Widgets.newInlineLabel
public static InlineLabel newInlineLabel (String text, String... styles) { return setStyleNames(new InlineLabel(text), styles); }
java
public static InlineLabel newInlineLabel (String text, String... styles) { return setStyleNames(new InlineLabel(text), styles); }
[ "public", "static", "InlineLabel", "newInlineLabel", "(", "String", "text", ",", "String", "...", "styles", ")", "{", "return", "setStyleNames", "(", "new", "InlineLabel", "(", "text", ")", ",", "styles", ")", ";", "}" ]
Creates an inline label with optional styles.
[ "Creates", "an", "inline", "label", "with", "optional", "styles", "." ]
31b31a23b667f2a9c683160d77646db259f2aae5
https://github.com/threerings/gwt-utils/blob/31b31a23b667f2a9c683160d77646db259f2aae5/src/main/java/com/threerings/gwt/ui/Widgets.java#L186-L189
train
threerings/gwt-utils
src/main/java/com/threerings/gwt/ui/Widgets.java
Widgets.newActionLabel
public static Label newActionLabel (String text, ClickHandler onClick) { return newActionLabel(text, null, onClick); }
java
public static Label newActionLabel (String text, ClickHandler onClick) { return newActionLabel(text, null, onClick); }
[ "public", "static", "Label", "newActionLabel", "(", "String", "text", ",", "ClickHandler", "onClick", ")", "{", "return", "newActionLabel", "(", "text", ",", "null", ",", "onClick", ")", ";", "}" ]
Creates a label that triggers an action using the supplied text and handler.
[ "Creates", "a", "label", "that", "triggers", "an", "action", "using", "the", "supplied", "text", "and", "handler", "." ]
31b31a23b667f2a9c683160d77646db259f2aae5
https://github.com/threerings/gwt-utils/blob/31b31a23b667f2a9c683160d77646db259f2aae5/src/main/java/com/threerings/gwt/ui/Widgets.java#L194-L197
train
threerings/gwt-utils
src/main/java/com/threerings/gwt/ui/Widgets.java
Widgets.newActionLabel
public static Label newActionLabel (String text, String style, ClickHandler onClick) { return makeActionLabel(newLabel(text, style), onClick); }
java
public static Label newActionLabel (String text, String style, ClickHandler onClick) { return makeActionLabel(newLabel(text, style), onClick); }
[ "public", "static", "Label", "newActionLabel", "(", "String", "text", ",", "String", "style", ",", "ClickHandler", "onClick", ")", "{", "return", "makeActionLabel", "(", "newLabel", "(", "text", ",", "style", ")", ",", "onClick", ")", ";", "}" ]
Creates a label that triggers an action using the supplied text and handler. The label will be styled as specified with an additional style that configures the mouse pointer and adds underline to the text.
[ "Creates", "a", "label", "that", "triggers", "an", "action", "using", "the", "supplied", "text", "and", "handler", ".", "The", "label", "will", "be", "styled", "as", "specified", "with", "an", "additional", "style", "that", "configures", "the", "mouse", "poi...
31b31a23b667f2a9c683160d77646db259f2aae5
https://github.com/threerings/gwt-utils/blob/31b31a23b667f2a9c683160d77646db259f2aae5/src/main/java/com/threerings/gwt/ui/Widgets.java#L204-L207
train
threerings/gwt-utils
src/main/java/com/threerings/gwt/ui/Widgets.java
Widgets.makeActionLabel
public static Label makeActionLabel (Label label, ClickHandler onClick) { return makeActionable(label, onClick, null); }
java
public static Label makeActionLabel (Label label, ClickHandler onClick) { return makeActionable(label, onClick, null); }
[ "public", "static", "Label", "makeActionLabel", "(", "Label", "label", ",", "ClickHandler", "onClick", ")", "{", "return", "makeActionable", "(", "label", ",", "onClick", ",", "null", ")", ";", "}" ]
Makes the supplied label into an action label. The label will be styled such that it configures the mouse pointer and adds underline to the text.
[ "Makes", "the", "supplied", "label", "into", "an", "action", "label", ".", "The", "label", "will", "be", "styled", "such", "that", "it", "configures", "the", "mouse", "pointer", "and", "adds", "underline", "to", "the", "text", "." ]
31b31a23b667f2a9c683160d77646db259f2aae5
https://github.com/threerings/gwt-utils/blob/31b31a23b667f2a9c683160d77646db259f2aae5/src/main/java/com/threerings/gwt/ui/Widgets.java#L213-L216
train
threerings/gwt-utils
src/main/java/com/threerings/gwt/ui/Widgets.java
Widgets.makeActionable
public static <T extends Widget & HasClickHandlers> T makeActionable ( final T target, final ClickHandler onClick, Value<Boolean> enabled) { if (onClick != null) { if (enabled != null) { enabled.addListenerAndTrigger(new Value.Listener<Boolean>() { public void valueChanged (Boolean enabled) { if (!enabled && _regi != null) { _regi.removeHandler(); _regi = null; target.removeStyleName("actionLabel"); } else if (enabled && _regi == null) { _regi = target.addClickHandler(onClick); target.addStyleName("actionLabel"); } } protected HandlerRegistration _regi; }); } else { target.addClickHandler(onClick); target.addStyleName("actionLabel"); } } return target; }
java
public static <T extends Widget & HasClickHandlers> T makeActionable ( final T target, final ClickHandler onClick, Value<Boolean> enabled) { if (onClick != null) { if (enabled != null) { enabled.addListenerAndTrigger(new Value.Listener<Boolean>() { public void valueChanged (Boolean enabled) { if (!enabled && _regi != null) { _regi.removeHandler(); _regi = null; target.removeStyleName("actionLabel"); } else if (enabled && _regi == null) { _regi = target.addClickHandler(onClick); target.addStyleName("actionLabel"); } } protected HandlerRegistration _regi; }); } else { target.addClickHandler(onClick); target.addStyleName("actionLabel"); } } return target; }
[ "public", "static", "<", "T", "extends", "Widget", "&", "HasClickHandlers", ">", "T", "makeActionable", "(", "final", "T", "target", ",", "final", "ClickHandler", "onClick", ",", "Value", "<", "Boolean", ">", "enabled", ")", "{", "if", "(", "onClick", "!="...
Makes the supplied widget "actionable" which means adding the "actionLabel" style to it and binding the supplied click handler. @param enabled an optional value that governs the enabled state of the target. When the value becomes false, the target's click handler and "actionLabel" style will be removed, when it becomes true they will be reinstated.
[ "Makes", "the", "supplied", "widget", "actionable", "which", "means", "adding", "the", "actionLabel", "style", "to", "it", "and", "binding", "the", "supplied", "click", "handler", "." ]
31b31a23b667f2a9c683160d77646db259f2aae5
https://github.com/threerings/gwt-utils/blob/31b31a23b667f2a9c683160d77646db259f2aae5/src/main/java/com/threerings/gwt/ui/Widgets.java#L226-L250
train
threerings/gwt-utils
src/main/java/com/threerings/gwt/ui/Widgets.java
Widgets.newHTML
public static HTML newHTML (String text, String... styles) { return setStyleNames(new HTML(text), styles); }
java
public static HTML newHTML (String text, String... styles) { return setStyleNames(new HTML(text), styles); }
[ "public", "static", "HTML", "newHTML", "(", "String", "text", ",", "String", "...", "styles", ")", "{", "return", "setStyleNames", "(", "new", "HTML", "(", "text", ")", ",", "styles", ")", ";", "}" ]
Creates a new HTML element with the specified contents and style.
[ "Creates", "a", "new", "HTML", "element", "with", "the", "specified", "contents", "and", "style", "." ]
31b31a23b667f2a9c683160d77646db259f2aae5
https://github.com/threerings/gwt-utils/blob/31b31a23b667f2a9c683160d77646db259f2aae5/src/main/java/com/threerings/gwt/ui/Widgets.java#L255-L258
train
threerings/gwt-utils
src/main/java/com/threerings/gwt/ui/Widgets.java
Widgets.newImage
public static Image newImage (String path, String... styles) { return setStyleNames(new Image(path), styles); }
java
public static Image newImage (String path, String... styles) { return setStyleNames(new Image(path), styles); }
[ "public", "static", "Image", "newImage", "(", "String", "path", ",", "String", "...", "styles", ")", "{", "return", "setStyleNames", "(", "new", "Image", "(", "path", ")", ",", "styles", ")", ";", "}" ]
Creates an image with the supplied path and style.
[ "Creates", "an", "image", "with", "the", "supplied", "path", "and", "style", "." ]
31b31a23b667f2a9c683160d77646db259f2aae5
https://github.com/threerings/gwt-utils/blob/31b31a23b667f2a9c683160d77646db259f2aae5/src/main/java/com/threerings/gwt/ui/Widgets.java#L279-L282
train
threerings/gwt-utils
src/main/java/com/threerings/gwt/ui/Widgets.java
Widgets.makeActionImage
public static Image makeActionImage (Image image, String tip, ClickHandler onClick) { if (tip != null) { image.setTitle(tip); } return makeActionable(image, onClick, null); }
java
public static Image makeActionImage (Image image, String tip, ClickHandler onClick) { if (tip != null) { image.setTitle(tip); } return makeActionable(image, onClick, null); }
[ "public", "static", "Image", "makeActionImage", "(", "Image", "image", ",", "String", "tip", ",", "ClickHandler", "onClick", ")", "{", "if", "(", "tip", "!=", "null", ")", "{", "image", ".", "setTitle", "(", "tip", ")", ";", "}", "return", "makeActionabl...
Makes an image into one that responds to clicking.
[ "Makes", "an", "image", "into", "one", "that", "responds", "to", "clicking", "." ]
31b31a23b667f2a9c683160d77646db259f2aae5
https://github.com/threerings/gwt-utils/blob/31b31a23b667f2a9c683160d77646db259f2aae5/src/main/java/com/threerings/gwt/ui/Widgets.java#L303-L309
train
threerings/gwt-utils
src/main/java/com/threerings/gwt/ui/Widgets.java
Widgets.newTextBox
public static TextBox newTextBox (String text, int maxLength, int visibleLength) { return initTextBox(new TextBox(), text, maxLength, visibleLength); }
java
public static TextBox newTextBox (String text, int maxLength, int visibleLength) { return initTextBox(new TextBox(), text, maxLength, visibleLength); }
[ "public", "static", "TextBox", "newTextBox", "(", "String", "text", ",", "int", "maxLength", ",", "int", "visibleLength", ")", "{", "return", "initTextBox", "(", "new", "TextBox", "(", ")", ",", "text", ",", "maxLength", ",", "visibleLength", ")", ";", "}"...
Creates a text box with all of the configuration that you're bound to want to do.
[ "Creates", "a", "text", "box", "with", "all", "of", "the", "configuration", "that", "you", "re", "bound", "to", "want", "to", "do", "." ]
31b31a23b667f2a9c683160d77646db259f2aae5
https://github.com/threerings/gwt-utils/blob/31b31a23b667f2a9c683160d77646db259f2aae5/src/main/java/com/threerings/gwt/ui/Widgets.java#L324-L327
train
threerings/gwt-utils
src/main/java/com/threerings/gwt/ui/Widgets.java
Widgets.getText
public static String getText (TextBoxBase box, String defaultAsBlank) { String s = box.getText().trim(); return s.equals(defaultAsBlank) ? "" : s; }
java
public static String getText (TextBoxBase box, String defaultAsBlank) { String s = box.getText().trim(); return s.equals(defaultAsBlank) ? "" : s; }
[ "public", "static", "String", "getText", "(", "TextBoxBase", "box", ",", "String", "defaultAsBlank", ")", "{", "String", "s", "=", "box", ".", "getText", "(", ")", ".", "trim", "(", ")", ";", "return", "s", ".", "equals", "(", "defaultAsBlank", ")", "?...
Retrieve the text from the TextBox, unless it is the specified default, in which case we return "".
[ "Retrieve", "the", "text", "from", "the", "TextBox", "unless", "it", "is", "the", "specified", "default", "in", "which", "case", "we", "return", "." ]
31b31a23b667f2a9c683160d77646db259f2aae5
https://github.com/threerings/gwt-utils/blob/31b31a23b667f2a9c683160d77646db259f2aae5/src/main/java/com/threerings/gwt/ui/Widgets.java#L346-L350
train
threerings/gwt-utils
src/main/java/com/threerings/gwt/ui/Widgets.java
Widgets.initTextBox
public static TextBox initTextBox (TextBox box, String text, int maxLength, int visibleLength) { if (text != null) { box.setText(text); } box.setMaxLength(maxLength > 0 ? maxLength : 255); if (visibleLength > 0) { box.setVisibleLength(visibleLength); } return box; }
java
public static TextBox initTextBox (TextBox box, String text, int maxLength, int visibleLength) { if (text != null) { box.setText(text); } box.setMaxLength(maxLength > 0 ? maxLength : 255); if (visibleLength > 0) { box.setVisibleLength(visibleLength); } return box; }
[ "public", "static", "TextBox", "initTextBox", "(", "TextBox", "box", ",", "String", "text", ",", "int", "maxLength", ",", "int", "visibleLength", ")", "{", "if", "(", "text", "!=", "null", ")", "{", "box", ".", "setText", "(", "text", ")", ";", "}", ...
Configures a text box with all of the configuration that you're bound to want to do. This is useful for configuring a PasswordTextBox.
[ "Configures", "a", "text", "box", "with", "all", "of", "the", "configuration", "that", "you", "re", "bound", "to", "want", "to", "do", ".", "This", "is", "useful", "for", "configuring", "a", "PasswordTextBox", "." ]
31b31a23b667f2a9c683160d77646db259f2aae5
https://github.com/threerings/gwt-utils/blob/31b31a23b667f2a9c683160d77646db259f2aae5/src/main/java/com/threerings/gwt/ui/Widgets.java#L356-L366
train
threerings/gwt-utils
src/main/java/com/threerings/gwt/ui/Widgets.java
Widgets.newTextArea
public static TextArea newTextArea (String text, int width, int height) { TextArea area = new TextArea(); if (text != null) { area.setText(text); } if (width > 0) { area.setCharacterWidth(width); } if (height > 0) { area.setVisibleLines(height); } return area; }
java
public static TextArea newTextArea (String text, int width, int height) { TextArea area = new TextArea(); if (text != null) { area.setText(text); } if (width > 0) { area.setCharacterWidth(width); } if (height > 0) { area.setVisibleLines(height); } return area; }
[ "public", "static", "TextArea", "newTextArea", "(", "String", "text", ",", "int", "width", ",", "int", "height", ")", "{", "TextArea", "area", "=", "new", "TextArea", "(", ")", ";", "if", "(", "text", "!=", "null", ")", "{", "area", ".", "setText", "...
Creates a text area with all of the configuration that you're bound to want to do. @param width the width of the text area or -1 to use the default (or CSS styled) width.
[ "Creates", "a", "text", "area", "with", "all", "of", "the", "configuration", "that", "you", "re", "bound", "to", "want", "to", "do", "." ]
31b31a23b667f2a9c683160d77646db259f2aae5
https://github.com/threerings/gwt-utils/blob/31b31a23b667f2a9c683160d77646db259f2aae5/src/main/java/com/threerings/gwt/ui/Widgets.java#L373-L386
train
threerings/gwt-utils
src/main/java/com/threerings/gwt/ui/Widgets.java
Widgets.newTextArea
public static LimitedTextArea newTextArea (String text, int width, int height, int maxLength) { LimitedTextArea area = new LimitedTextArea(maxLength, width, height); if (text != null) { area.setText(text); } return area; }
java
public static LimitedTextArea newTextArea (String text, int width, int height, int maxLength) { LimitedTextArea area = new LimitedTextArea(maxLength, width, height); if (text != null) { area.setText(text); } return area; }
[ "public", "static", "LimitedTextArea", "newTextArea", "(", "String", "text", ",", "int", "width", ",", "int", "height", ",", "int", "maxLength", ")", "{", "LimitedTextArea", "area", "=", "new", "LimitedTextArea", "(", "maxLength", ",", "width", ",", "height", ...
Creates a limited text area with all of the configuration that you're bound to want to do. @param width the width of the text area or -1 to use the default (or CSS styled) width.
[ "Creates", "a", "limited", "text", "area", "with", "all", "of", "the", "configuration", "that", "you", "re", "bound", "to", "want", "to", "do", "." ]
31b31a23b667f2a9c683160d77646db259f2aae5
https://github.com/threerings/gwt-utils/blob/31b31a23b667f2a9c683160d77646db259f2aae5/src/main/java/com/threerings/gwt/ui/Widgets.java#L393-L400
train
threerings/gwt-utils
src/main/java/com/threerings/gwt/ui/Widgets.java
Widgets.newImageButton
public static PushButton newImageButton (String style, ClickHandler onClick) { PushButton button = new PushButton(); maybeAddClickHandler(button, onClick); return setStyleNames(button, style, "actionLabel"); }
java
public static PushButton newImageButton (String style, ClickHandler onClick) { PushButton button = new PushButton(); maybeAddClickHandler(button, onClick); return setStyleNames(button, style, "actionLabel"); }
[ "public", "static", "PushButton", "newImageButton", "(", "String", "style", ",", "ClickHandler", "onClick", ")", "{", "PushButton", "button", "=", "new", "PushButton", "(", ")", ";", "maybeAddClickHandler", "(", "button", ",", "onClick", ")", ";", "return", "s...
Creates an image button that changes appearance when you click and hover over it.
[ "Creates", "an", "image", "button", "that", "changes", "appearance", "when", "you", "click", "and", "hover", "over", "it", "." ]
31b31a23b667f2a9c683160d77646db259f2aae5
https://github.com/threerings/gwt-utils/blob/31b31a23b667f2a9c683160d77646db259f2aae5/src/main/java/com/threerings/gwt/ui/Widgets.java#L417-L422
train
threerings/gwt-utils
src/main/java/com/threerings/gwt/ui/Widgets.java
Widgets.setStyleNames
public static <T extends Widget> T setStyleNames (T widget, String... styles) { int idx = 0; for (String style : styles) { if (style == null) { continue; } if (idx++ == 0) { widget.setStyleName(style); } else { widget.addStyleName(style); } } return widget; }
java
public static <T extends Widget> T setStyleNames (T widget, String... styles) { int idx = 0; for (String style : styles) { if (style == null) { continue; } if (idx++ == 0) { widget.setStyleName(style); } else { widget.addStyleName(style); } } return widget; }
[ "public", "static", "<", "T", "extends", "Widget", ">", "T", "setStyleNames", "(", "T", "widget", ",", "String", "...", "styles", ")", "{", "int", "idx", "=", "0", ";", "for", "(", "String", "style", ":", "styles", ")", "{", "if", "(", "style", "==...
Configures the supplied styles on the supplied widget. Existing styles will not be preserved unless you call this with no-non-null styles. Returns the widget for easy chaining.
[ "Configures", "the", "supplied", "styles", "on", "the", "supplied", "widget", ".", "Existing", "styles", "will", "not", "be", "preserved", "unless", "you", "call", "this", "with", "no", "-", "non", "-", "null", "styles", ".", "Returns", "the", "widget", "f...
31b31a23b667f2a9c683160d77646db259f2aae5
https://github.com/threerings/gwt-utils/blob/31b31a23b667f2a9c683160d77646db259f2aae5/src/main/java/com/threerings/gwt/ui/Widgets.java#L440-L454
train
udoprog/tiny-async-java
tiny-async-core/src/main/java/eu/toolchain/concurrent/ConcurrentReloadableManaged.java
ConcurrentReloadableManaged.newManaged
private ConcurrentManaged<T> newManaged() { return ConcurrentManaged.newManaged(async, caller, managedOptions, setup, teardown); }
java
private ConcurrentManaged<T> newManaged() { return ConcurrentManaged.newManaged(async, caller, managedOptions, setup, teardown); }
[ "private", "ConcurrentManaged", "<", "T", ">", "newManaged", "(", ")", "{", "return", "ConcurrentManaged", ".", "newManaged", "(", "async", ",", "caller", ",", "managedOptions", ",", "setup", ",", "teardown", ")", ";", "}" ]
Construct a new managed reference. @return a new concurrent managed
[ "Construct", "a", "new", "managed", "reference", "." ]
987706d4b7f2d13b45eefdc6c54ea63ce64b3310
https://github.com/udoprog/tiny-async-java/blob/987706d4b7f2d13b45eefdc6c54ea63ce64b3310/tiny-async-core/src/main/java/eu/toolchain/concurrent/ConcurrentReloadableManaged.java#L153-L155
train
tminglei/form-binder-java
src/main/java/com/github/tminglei/bind/Processors.java
Processors.changePrefix
public static PreProcessor changePrefix(String from, String to) { return mkPreProcessorWithMeta((prefix, data, options) -> { logger.debug("changing prefix at '{}' from '{}' to '{}'", prefix, from, to); return data.entrySet().stream() .map(e -> { if (!e.getKey().startsWith(prefix)) return e; else { String tail = e.getKey().substring(prefix.length()) .replaceFirst("^[\\.]?" + Pattern.quote(from), to) .replaceFirst("^\\.", ""); String newKey = isEmptyStr(tail) ? prefix : (prefix + "." + tail).replaceFirst("^\\.", ""); return entry( newKey, e.getValue() ); } }).collect(Collectors.toMap( Map.Entry::getKey, Map.Entry::getValue )); }, new ExtensionMeta(PRE_PROCESSOR_CHANGE_PREFIX, "changePrefix(from '" +from+ "' to '" +to+ "')", Arrays.asList(from, to))); }
java
public static PreProcessor changePrefix(String from, String to) { return mkPreProcessorWithMeta((prefix, data, options) -> { logger.debug("changing prefix at '{}' from '{}' to '{}'", prefix, from, to); return data.entrySet().stream() .map(e -> { if (!e.getKey().startsWith(prefix)) return e; else { String tail = e.getKey().substring(prefix.length()) .replaceFirst("^[\\.]?" + Pattern.quote(from), to) .replaceFirst("^\\.", ""); String newKey = isEmptyStr(tail) ? prefix : (prefix + "." + tail).replaceFirst("^\\.", ""); return entry( newKey, e.getValue() ); } }).collect(Collectors.toMap( Map.Entry::getKey, Map.Entry::getValue )); }, new ExtensionMeta(PRE_PROCESSOR_CHANGE_PREFIX, "changePrefix(from '" +from+ "' to '" +to+ "')", Arrays.asList(from, to))); }
[ "public", "static", "PreProcessor", "changePrefix", "(", "String", "from", ",", "String", "to", ")", "{", "return", "mkPreProcessorWithMeta", "(", "(", "prefix", ",", "data", ",", "options", ")", "->", "{", "logger", ".", "debug", "(", "\"changing prefix at '{...
change data key prefix from one to other @param from from prefix @param to to prefix @return new created pre-processor
[ "change", "data", "key", "prefix", "from", "one", "to", "other" ]
4c0bd1e8f81ae56b21142bb525ee6b4deb7f92ab
https://github.com/tminglei/form-binder-java/blob/4c0bd1e8f81ae56b21142bb525ee6b4deb7f92ab/src/main/java/com/github/tminglei/bind/Processors.java#L177-L202
train
threerings/gwt-utils
src/main/java/com/threerings/gwt/ui/FX.java
FX.delay
public static Command delay (final Command command, final int delay) { return (command == null) ? null : new Command() { public void execute () { new Timer() { @Override public void run () { command.execute(); } }.schedule(delay); } }; }
java
public static Command delay (final Command command, final int delay) { return (command == null) ? null : new Command() { public void execute () { new Timer() { @Override public void run () { command.execute(); } }.schedule(delay); } }; }
[ "public", "static", "Command", "delay", "(", "final", "Command", "command", ",", "final", "int", "delay", ")", "{", "return", "(", "command", "==", "null", ")", "?", "null", ":", "new", "Command", "(", ")", "{", "public", "void", "execute", "(", ")", ...
Returns a command that, when executed itself, will execute the supplied command after the specified millisecond delay. For convenience purposes, if a null command is supplied, null is returned.
[ "Returns", "a", "command", "that", "when", "executed", "itself", "will", "execute", "the", "supplied", "command", "after", "the", "specified", "millisecond", "delay", ".", "For", "convenience", "purposes", "if", "a", "null", "command", "is", "supplied", "null", ...
31b31a23b667f2a9c683160d77646db259f2aae5
https://github.com/threerings/gwt-utils/blob/31b31a23b667f2a9c683160d77646db259f2aae5/src/main/java/com/threerings/gwt/ui/FX.java#L126-L137
train
icode/ameba
src/main/java/ameba/websocket/sockjs/frame/AbstractSockJsMessageCodec.java
AbstractSockJsMessageCodec.escapeSockJsSpecialChars
private String escapeSockJsSpecialChars(char[] characters) { StringBuilder result = new StringBuilder(); for (char c : characters) { if (isSockJsSpecialChar(c)) { result.append('\\').append('u'); String hex = Integer.toHexString(c).toLowerCase(); for (int i = 0; i < (4 - hex.length()); i++) { result.append('0'); } result.append(hex); } else { result.append(c); } } return result.toString(); }
java
private String escapeSockJsSpecialChars(char[] characters) { StringBuilder result = new StringBuilder(); for (char c : characters) { if (isSockJsSpecialChar(c)) { result.append('\\').append('u'); String hex = Integer.toHexString(c).toLowerCase(); for (int i = 0; i < (4 - hex.length()); i++) { result.append('0'); } result.append(hex); } else { result.append(c); } } return result.toString(); }
[ "private", "String", "escapeSockJsSpecialChars", "(", "char", "[", "]", "characters", ")", "{", "StringBuilder", "result", "=", "new", "StringBuilder", "(", ")", ";", "for", "(", "char", "c", ":", "characters", ")", "{", "if", "(", "isSockJsSpecialChar", "("...
See "JSON Unicode Encoding" section of SockJS protocol.
[ "See", "JSON", "Unicode", "Encoding", "section", "of", "SockJS", "protocol", "." ]
9d4956e935898e41331b2745e400ef869cd265e0
https://github.com/icode/ameba/blob/9d4956e935898e41331b2745e400ef869cd265e0/src/main/java/ameba/websocket/sockjs/frame/AbstractSockJsMessageCodec.java#L62-L77
train
icode/ameba
src/main/java/ameba/websocket/sockjs/frame/AbstractSockJsMessageCodec.java
AbstractSockJsMessageCodec.isSockJsSpecialChar
private boolean isSockJsSpecialChar(char ch) { return ch <= '\u001F' || ch >= '\u200C' && ch <= '\u200F' || ch >= '\u2028' && ch <= '\u202F' || ch >= '\u2060' && ch <= '\u206F' || ch >= '\uFFF0' || ch >= '\uD800' && ch <= '\uDFFF'; }
java
private boolean isSockJsSpecialChar(char ch) { return ch <= '\u001F' || ch >= '\u200C' && ch <= '\u200F' || ch >= '\u2028' && ch <= '\u202F' || ch >= '\u2060' && ch <= '\u206F' || ch >= '\uFFF0' || ch >= '\uD800' && ch <= '\uDFFF'; }
[ "private", "boolean", "isSockJsSpecialChar", "(", "char", "ch", ")", "{", "return", "ch", "<=", "'", "'", "||", "ch", ">=", "'", "'", "&&", "ch", "<=", "'", "'", "||", "ch", ">=", "'", "'", "&&", "ch", "<=", "'", "'", "||", "ch", ">=", "'", "...
See `escapable_by_server` variable in the SockJS protocol test suite.
[ "See", "escapable_by_server", "variable", "in", "the", "SockJS", "protocol", "test", "suite", "." ]
9d4956e935898e41331b2745e400ef869cd265e0
https://github.com/icode/ameba/blob/9d4956e935898e41331b2745e400ef869cd265e0/src/main/java/ameba/websocket/sockjs/frame/AbstractSockJsMessageCodec.java#L82-L89
train
alexvasilkov/Events
library/src/main/java/com/alexvasilkov/events/internal/Dispatcher.java
Dispatcher.scheduleActiveStatusesUpdates
@MainThread private void scheduleActiveStatusesUpdates(EventTarget target, EventStatus status) { for (Event event : activeEvents) { for (EventMethod method : target.methods) { if (event.getKey().equals(method.eventKey) && method.type == EventMethod.Type.STATUS) { Utils.log(event.getKey(), method, "Scheduling status update for new target"); executionQueue.addFirst(Task.create(this, target, method, event, status)); } } } }
java
@MainThread private void scheduleActiveStatusesUpdates(EventTarget target, EventStatus status) { for (Event event : activeEvents) { for (EventMethod method : target.methods) { if (event.getKey().equals(method.eventKey) && method.type == EventMethod.Type.STATUS) { Utils.log(event.getKey(), method, "Scheduling status update for new target"); executionQueue.addFirst(Task.create(this, target, method, event, status)); } } } }
[ "@", "MainThread", "private", "void", "scheduleActiveStatusesUpdates", "(", "EventTarget", "target", ",", "EventStatus", "status", ")", "{", "for", "(", "Event", "event", ":", "activeEvents", ")", "{", "for", "(", "EventMethod", "method", ":", "target", ".", "...
Schedules status updates of all active events for given target.
[ "Schedules", "status", "updates", "of", "all", "active", "events", "for", "given", "target", "." ]
4208e11fab35d99229fe6c3b3d434ca1948f3fc5
https://github.com/alexvasilkov/Events/blob/4208e11fab35d99229fe6c3b3d434ca1948f3fc5/library/src/main/java/com/alexvasilkov/events/internal/Dispatcher.java#L80-L91
train
alexvasilkov/Events
library/src/main/java/com/alexvasilkov/events/internal/Dispatcher.java
Dispatcher.scheduleStatusUpdates
@MainThread private void scheduleStatusUpdates(Event event, EventStatus status) { for (EventTarget target : targets) { for (EventMethod method : target.methods) { if (event.getKey().equals(method.eventKey) && method.type == EventMethod.Type.STATUS) { Utils.log(event.getKey(), method, "Scheduling status update"); executionQueue.add(Task.create(this, target, method, event, status)); } } } }
java
@MainThread private void scheduleStatusUpdates(Event event, EventStatus status) { for (EventTarget target : targets) { for (EventMethod method : target.methods) { if (event.getKey().equals(method.eventKey) && method.type == EventMethod.Type.STATUS) { Utils.log(event.getKey(), method, "Scheduling status update"); executionQueue.add(Task.create(this, target, method, event, status)); } } } }
[ "@", "MainThread", "private", "void", "scheduleStatusUpdates", "(", "Event", "event", ",", "EventStatus", "status", ")", "{", "for", "(", "EventTarget", "target", ":", "targets", ")", "{", "for", "(", "EventMethod", "method", ":", "target", ".", "methods", "...
Schedules status update of given event for all registered targets.
[ "Schedules", "status", "update", "of", "given", "event", "for", "all", "registered", "targets", "." ]
4208e11fab35d99229fe6c3b3d434ca1948f3fc5
https://github.com/alexvasilkov/Events/blob/4208e11fab35d99229fe6c3b3d434ca1948f3fc5/library/src/main/java/com/alexvasilkov/events/internal/Dispatcher.java#L94-L105
train
alexvasilkov/Events
library/src/main/java/com/alexvasilkov/events/internal/Dispatcher.java
Dispatcher.scheduleSubscribersInvocation
@MainThread private void scheduleSubscribersInvocation(Event event) { for (EventTarget target : targets) { for (EventMethod method : target.methods) { if (event.getKey().equals(method.eventKey) && method.type == EventMethod.Type.SUBSCRIBE) { Utils.log(event.getKey(), method, "Scheduling event execution"); ((EventBase) event).handlersCount++; Task task = Task.create(this, target, method, event); executionQueue.add(task); } } } }
java
@MainThread private void scheduleSubscribersInvocation(Event event) { for (EventTarget target : targets) { for (EventMethod method : target.methods) { if (event.getKey().equals(method.eventKey) && method.type == EventMethod.Type.SUBSCRIBE) { Utils.log(event.getKey(), method, "Scheduling event execution"); ((EventBase) event).handlersCount++; Task task = Task.create(this, target, method, event); executionQueue.add(task); } } } }
[ "@", "MainThread", "private", "void", "scheduleSubscribersInvocation", "(", "Event", "event", ")", "{", "for", "(", "EventTarget", "target", ":", "targets", ")", "{", "for", "(", "EventMethod", "method", ":", "target", ".", "methods", ")", "{", "if", "(", ...
Schedules handling of given event for all registered targets.
[ "Schedules", "handling", "of", "given", "event", "for", "all", "registered", "targets", "." ]
4208e11fab35d99229fe6c3b3d434ca1948f3fc5
https://github.com/alexvasilkov/Events/blob/4208e11fab35d99229fe6c3b3d434ca1948f3fc5/library/src/main/java/com/alexvasilkov/events/internal/Dispatcher.java#L108-L124
train
alexvasilkov/Events
library/src/main/java/com/alexvasilkov/events/internal/Dispatcher.java
Dispatcher.scheduleResultCallbacks
@MainThread private void scheduleResultCallbacks(Event event, EventResult result) { for (EventTarget target : targets) { for (EventMethod method : target.methods) { if (event.getKey().equals(method.eventKey) && method.type == EventMethod.Type.RESULT) { Utils.log(event.getKey(), method, "Scheduling result callback"); executionQueue.add(Task.create(this, target, method, event, result)); } } } }
java
@MainThread private void scheduleResultCallbacks(Event event, EventResult result) { for (EventTarget target : targets) { for (EventMethod method : target.methods) { if (event.getKey().equals(method.eventKey) && method.type == EventMethod.Type.RESULT) { Utils.log(event.getKey(), method, "Scheduling result callback"); executionQueue.add(Task.create(this, target, method, event, result)); } } } }
[ "@", "MainThread", "private", "void", "scheduleResultCallbacks", "(", "Event", "event", ",", "EventResult", "result", ")", "{", "for", "(", "EventTarget", "target", ":", "targets", ")", "{", "for", "(", "EventMethod", "method", ":", "target", ".", "methods", ...
Schedules sending result to all registered targets.
[ "Schedules", "sending", "result", "to", "all", "registered", "targets", "." ]
4208e11fab35d99229fe6c3b3d434ca1948f3fc5
https://github.com/alexvasilkov/Events/blob/4208e11fab35d99229fe6c3b3d434ca1948f3fc5/library/src/main/java/com/alexvasilkov/events/internal/Dispatcher.java#L127-L138
train
alexvasilkov/Events
library/src/main/java/com/alexvasilkov/events/internal/Dispatcher.java
Dispatcher.scheduleFailureCallbacks
@MainThread private void scheduleFailureCallbacks(Event event, EventFailure failure) { // Sending failure callback for explicit handlers of given event for (EventTarget target : targets) { for (EventMethod method : target.methods) { if (event.getKey().equals(method.eventKey) && method.type == EventMethod.Type.FAILURE) { Utils.log(event.getKey(), method, "Scheduling failure callback"); executionQueue.add(Task.create(this, target, method, event, failure)); } } } // Sending failure callback to general handlers (with no particular event key) for (EventTarget target : targets) { for (EventMethod method : target.methods) { if (EventsParams.EMPTY_KEY.equals(method.eventKey) && method.type == EventMethod.Type.FAILURE) { Utils.log(event.getKey(), method, "Scheduling general failure callback"); executionQueue.add(Task.create(this, target, method, event, failure)); } } } }
java
@MainThread private void scheduleFailureCallbacks(Event event, EventFailure failure) { // Sending failure callback for explicit handlers of given event for (EventTarget target : targets) { for (EventMethod method : target.methods) { if (event.getKey().equals(method.eventKey) && method.type == EventMethod.Type.FAILURE) { Utils.log(event.getKey(), method, "Scheduling failure callback"); executionQueue.add(Task.create(this, target, method, event, failure)); } } } // Sending failure callback to general handlers (with no particular event key) for (EventTarget target : targets) { for (EventMethod method : target.methods) { if (EventsParams.EMPTY_KEY.equals(method.eventKey) && method.type == EventMethod.Type.FAILURE) { Utils.log(event.getKey(), method, "Scheduling general failure callback"); executionQueue.add(Task.create(this, target, method, event, failure)); } } } }
[ "@", "MainThread", "private", "void", "scheduleFailureCallbacks", "(", "Event", "event", ",", "EventFailure", "failure", ")", "{", "// Sending failure callback for explicit handlers of given event", "for", "(", "EventTarget", "target", ":", "targets", ")", "{", "for", "...
Schedules sending failure callback to all registered targets.
[ "Schedules", "sending", "failure", "callback", "to", "all", "registered", "targets", "." ]
4208e11fab35d99229fe6c3b3d434ca1948f3fc5
https://github.com/alexvasilkov/Events/blob/4208e11fab35d99229fe6c3b3d434ca1948f3fc5/library/src/main/java/com/alexvasilkov/events/internal/Dispatcher.java#L141-L164
train
alexvasilkov/Events
library/src/main/java/com/alexvasilkov/events/internal/Dispatcher.java
Dispatcher.handleRegistration
@MainThread private void handleRegistration(Object targetObj) { if (targetObj == null) { throw new NullPointerException("Target cannot be null"); } for (EventTarget target : targets) { if (target.targetObj == targetObj) { Utils.logE(targetObj, "Already registered"); return; } } EventTarget target = new EventTarget(targetObj); targets.add(target); Utils.log(targetObj, "Registered"); scheduleActiveStatusesUpdates(target, EventStatus.STARTED); executeTasks(false); }
java
@MainThread private void handleRegistration(Object targetObj) { if (targetObj == null) { throw new NullPointerException("Target cannot be null"); } for (EventTarget target : targets) { if (target.targetObj == targetObj) { Utils.logE(targetObj, "Already registered"); return; } } EventTarget target = new EventTarget(targetObj); targets.add(target); Utils.log(targetObj, "Registered"); scheduleActiveStatusesUpdates(target, EventStatus.STARTED); executeTasks(false); }
[ "@", "MainThread", "private", "void", "handleRegistration", "(", "Object", "targetObj", ")", "{", "if", "(", "targetObj", "==", "null", ")", "{", "throw", "new", "NullPointerException", "(", "\"Target cannot be null\"", ")", ";", "}", "for", "(", "EventTarget", ...
Handles target object registration
[ "Handles", "target", "object", "registration" ]
4208e11fab35d99229fe6c3b3d434ca1948f3fc5
https://github.com/alexvasilkov/Events/blob/4208e11fab35d99229fe6c3b3d434ca1948f3fc5/library/src/main/java/com/alexvasilkov/events/internal/Dispatcher.java#L168-L188
train