mirror of
https://github.com/eclipse-sailing-analytics/sailing-analytics.git
synced 2026-09-23 22:19:13 +00:00
removed redundant type argument from PerspectiveLifecycle, too
Change-Id: I2873b47ababc4ba2d40e0a72ce5537b5a58953c4
This commit is contained in:
+1
-1
@@ -17,7 +17,7 @@ import com.sap.sse.gwt.client.shared.components.CompositeSettings;
|
||||
* @author Frank Mittag
|
||||
*
|
||||
*/
|
||||
public abstract class AbstractPerspectiveLifecycle<PS extends Settings> implements PerspectiveLifecycle<PS, PerspectiveCompositeTabbedSettingsDialogComponent<PS>> {
|
||||
public abstract class AbstractPerspectiveLifecycle<PS extends Settings> implements PerspectiveLifecycle<PS> {
|
||||
|
||||
protected final List<ComponentLifecycle<?,?>> componentLifecycles;
|
||||
|
||||
|
||||
+3
-7
@@ -8,15 +8,11 @@ import com.sap.sse.gwt.client.shared.components.SettingsDialogComponent;
|
||||
* A lifecycle interface for a {@link Perspective}
|
||||
*
|
||||
* @param <PS>
|
||||
* the perspective specific settings type
|
||||
* @param <PCS>
|
||||
* the perspective composite settings type
|
||||
* @param <SDP>
|
||||
* the settings dialog component type
|
||||
* the perspective specific settings type
|
||||
* @author Frank Mittag
|
||||
*/
|
||||
public interface PerspectiveLifecycle<PS extends Settings, SDP extends SettingsDialogComponent<PerspectiveCompositeSettings<PS>>> extends ComponentLifecycle<PerspectiveCompositeSettings<PS>, SDP> {
|
||||
|
||||
public interface PerspectiveLifecycle<PS extends Settings> extends
|
||||
ComponentLifecycle<PerspectiveCompositeSettings<PS>, PerspectiveCompositeTabbedSettingsDialogComponent<PS>> {
|
||||
Iterable<ComponentLifecycle<?,?>> getComponentLifecycles();
|
||||
|
||||
PS createPerspectiveOwnDefaultSettings();
|
||||
|
||||
Reference in New Issue
Block a user