some more javadoc cleanup

This commit is contained in:
fmittag
2016-05-17 14:31:36 +02:00
parent d05b7cac67
commit beeaf84403
2 changed files with 8 additions and 1 deletions
@@ -2,6 +2,13 @@ package com.sap.sse.gwt.client.shared.components;
import com.sap.sse.common.settings.Settings;
/**
* A utility class to combine a {@link ComponentLifecycle} and the settings of the corresponding {@link Component}
* @author Frank
*
* @param <ComponentLifecycleType>
* @param <SettingsType>
*/
public class ComponentLifecycleAndSettings<ComponentLifecycleType extends ComponentLifecycle<SettingsType, ?>, SettingsType extends Settings> {
private final ComponentLifecycleType componentLifecycle;
private final SettingsType settings;
@@ -5,7 +5,7 @@ import com.sap.sse.common.settings.Settings;
/**
* @author Frank
*
*
*/
public class CompositeLifecycleSettings extends AbstractSettings {
private final Iterable<ComponentLifecycleAndSettings<?,?>> settingsPerComponentLifecycle;