提交 6eb19196 编写于 作者: J Jesse Glick

[JENKINS-18224] Preparing to merge #1059.

上级 6815152c
......@@ -55,6 +55,9 @@ Upcoming changes</a>
<!-- Record your changes in the trunk here. -->
<div id="trunk" style="display:none"><!--=TRUNK-BEGIN=-->
<ul class=image>
<li class=rfe>
API for adding actions to a wide class of model objects at once.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-18224">issue 18224</a>)
<li class='major rfe'>
Added infrastructure for moving items into or out of folders.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-20008">issue 20008</a>)
......
......@@ -85,7 +85,7 @@ public abstract class Actionable extends AbstractModelObject implements ModelObj
* Gets all actions, transient or persistent.
* {@link #getActions} is supplemented with anything contributed by {@link TransientActionFactory}.
* @return an unmodifiable, possible empty list
* @since TODO
* @since 1.548
*/
@Exported(name="actions")
public final List<? extends Action> getAllActions() {
......@@ -126,7 +126,7 @@ public abstract class Actionable extends AbstractModelObject implements ModelObj
/**
* Add an action, replacing any existing action of the (exact) same class.
* @param a an action to add/replace
* @since TODO
* @since 1.548
*/
public void replaceAction(Action a) {
Iterator<Action> it = getActions().iterator();
......
......@@ -32,7 +32,7 @@ import javax.annotation.Nonnull;
/**
* Allows you to add actions to any kind of {@link Actionable} at once.
* @see Actionable#getAllActions
* @since TODO
* @since 1.548
*/
public abstract class TransientActionFactory<T extends Actionable> {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册