add the since tags

Signed-off-by: gabrield <d.gabriel@bachmann.info>
This commit is contained in:
gabrield 2019-11-19 09:41:40 +01:00
parent 49447a65aa
commit acdd7c8482
2 changed files with 6 additions and 0 deletions

View file

@ -43,6 +43,9 @@ public class StateBasedContainer extends ResourceDescriptionsBasedContainer {
this.state = state;
}
/**
* @since 2.20
*/
protected final IContainerState getState() {
return state;
}

View file

@ -88,6 +88,9 @@ public class StateBasedContainerManager implements IContainer.Manager {
return createContainer(resourceDescriptions, state, containerState);
}
/**
* @since 2.20
*/
protected IContainer createContainer(IResourceDescriptions resourceDescriptions, IAllContainersState allContainerState, IContainerState containerState) {
StateBasedContainer result = new StateBasedContainer(resourceDescriptions, containerState);