Skip to content

Commit

Permalink
[JENKINS-18224] Preparing to merge #1059.
Browse files Browse the repository at this point in the history
  • Loading branch information
jglick committed Jan 9, 2014
1 parent 6815152 commit 6eb1919
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions changelog.html
Expand Up @@ -55,6 +55,9 @@
<!-- 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>)
Expand Down
4 changes: 2 additions & 2 deletions core/src/main/java/hudson/model/Actionable.java
Expand Up @@ -85,7 +85,7 @@ public List<Action> getActions() {
* 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() {
Expand Down Expand Up @@ -126,7 +126,7 @@ public void addAction(Action a) {
/**
* 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();
Expand Down
Expand Up @@ -32,7 +32,7 @@
/**
* 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> {

Expand Down

0 comments on commit 6eb1919

Please sign in to comment.