Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: d0a6d182655a15bb49d97897c9115a444a15c1e3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
/**
 * Copyright (c) 2015 Christian W. Damus and others.
 *
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *   Christian W. Damus - Initial API and implementation
 *
 */
package org.eclipse.papyrus.infra.editor.welcome.internal.operations;

import java.util.List;
import java.util.ListIterator;

import org.eclipse.emf.common.util.EList;
import org.eclipse.emf.ecore.EStructuralFeature;
import org.eclipse.emf.ecore.InternalEObject;
import org.eclipse.papyrus.infra.editor.welcome.WelcomePackage;
import org.eclipse.papyrus.infra.editor.welcome.WelcomePage;
import org.eclipse.papyrus.infra.editor.welcome.WelcomeSection;
import org.eclipse.uml2.common.util.DerivedSubsetEObjectEList;

/**
 * <!-- begin-user-doc -->
 * A static utility class that provides operations related to '<em><b>Page</b></em>' model objects.
 * <!-- end-user-doc -->
 *
 * <p>
 * The following operations are supported:
 * </p>
 * <ul>
 * <li>{@link org.eclipse.papyrus.infra.editor.welcome.WelcomePage#getVisibleSections() <em>Get Visible Sections</em>}</li>
 * <li>{@link org.eclipse.papyrus.infra.editor.welcome.WelcomePage#getSection(java.lang.String) <em>Get Section</em>}</li>
 * </ul>
 *
 * @generated
 */
public class WelcomePageOperations {
	/**
	 * This must be updated whenever the corresponding constant in the
	 * WelcomePageImpl class is regenerated.
	 */
	protected static final int[] VISIBLE_SECTION_ESUPERSETS = new int[] { WelcomePackage.WELCOME_PAGE__SECTION };

	/**
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 *
	 * @generated
	 */
	protected WelcomePageOperations() {
		super();
	}

	/**
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 *
	 * @generated NOT
	 */
	public static EList<WelcomeSection> getVisibleSections(WelcomePage welcomePage) {
		return new VisibleSectionsList((InternalEObject) welcomePage,
				WelcomePackage.WELCOME_PAGE__VISIBLE_SECTION, VISIBLE_SECTION_ESUPERSETS);
	}

	/**
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 *
	 * @generated NOT
	 */
	public static WelcomeSection getSection(WelcomePage welcomePage, String identifier) {
		return welcomePage.getSections().stream()
				.filter(s -> s.isIdentifiedBy(identifier))
				.findFirst()
				.orElse(null);
	}

	//
	// Nested types
	//

	private static class VisibleSectionsList extends DerivedSubsetEObjectEList<WelcomeSection> {

		protected VisibleSectionsList(InternalEObject owner, int featureID, int[] sourceFeatureIDs) {
			super(WelcomeSection.class, owner, featureID, sourceFeatureIDs);
		}

		@Override
		public List<WelcomeSection> basicList() {
			return new VisibleSectionsList(owner, featureID, sourceFeatureIDs) {

				@Override
				public ListIterator<WelcomeSection> listIterator(int index) {
					return basicListIterator(index);
				}
			};
		}

		@Override
		protected boolean isIncluded(EStructuralFeature feature) {
			// Require always isIncluded(Object)
			return false;
		}

		@Override
		protected boolean isIncluded(Object object) {
			return super.isIncluded(object) && !((WelcomeSection) object).isHidden();
		}

		@Override
		protected WelcomeSection validate(int index, WelcomeSection object) {
			WelcomeSection result = super.validate(index, object);

			if (object.isHidden()) {
				throw new IllegalArgumentException(String.valueOf(object));
			}

			return result;
		}

	}

} // WelcomePageOperations

Back to the top