Skip to content

Commit

Permalink
javadoc and copyright update
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolabeghin committed Jun 4, 2019
1 parent ca37daf commit ee04936
Showing 1 changed file with 7 additions and 7 deletions.
@@ -1,5 +1,5 @@
/**
* Copyright (c) 2014, 2015 ControlsFX
* Copyright (c) 2014, 2019 ControlsFX
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
Expand Down Expand Up @@ -163,27 +163,27 @@ public final void setGraphicFactory(Callback<T, Node> factory) {
}

/**
* Check if tasks will not be removed when succeeded, cancelled or failed
* Checks if tasks will not be removed when succeeded, cancelled or failed.
*
* @return boolean
* @return boolean determines if tasks will be retained
*/
public final boolean isRetainTasks() {
return retainTasks.get();
}

/**
* Do not remove tasks when succeeded, cancelled or failed
* Do not remove tasks when succeeded, cancelled or failed.
*
* @return BooleanProperty
* @return BooleanProperty the retainTasks property
*/
public final BooleanProperty retainTasksProperty() {
return retainTasks;
}

/**
* Do not remove tasks when succeeded, cancelled or failed
* Do not remove tasks when succeeded, cancelled or failed.
*
* @param retainTasks
* @param retainTasks determines if tasks will be retained
*/
public final void setRetainTasks(boolean retainTasks) {
this.retainTasks.set(retainTasks);
Expand Down

0 comments on commit ee04936

Please sign in to comment.