Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: a1d883f7132d3a00f8d7308aeec822e7b13dec9e (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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
/*******************************************************************************
 * Copyright (c) 2000, 2018 IBM Corporation and others.
 *
 * This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License 2.0
 * which accompanies this distribution, and is available at
 * https://www.eclipse.org/legal/epl-2.0/
 *
 * SPDX-License-Identifier: EPL-2.0
 *
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/

package org.eclipse.ui.internal.util;

import org.eclipse.core.runtime.IConfigurationElement;
import org.eclipse.ui.IMemento;

public final class ConfigurationElementMemento implements IMemento {

	private IConfigurationElement configurationElement;

	public ConfigurationElementMemento(IConfigurationElement configurationElement) {
		if (configurationElement == null) {
			throw new NullPointerException();
		}

		this.configurationElement = configurationElement;
	}

	@Override
	public IMemento createChild(String type) {
		return null;
	}

	@Override
	public IMemento createChild(String type, String id) {
		return null;
	}

	@Override
	public IMemento getChild(String type) {
		IConfigurationElement[] configurationElements = configurationElement.getChildren(type);

		if (configurationElements != null && configurationElements.length >= 1) {
			return new ConfigurationElementMemento(configurationElements[0]);
		}

		return null;
	}

	@Override
	public IMemento[] getChildren() {
		IConfigurationElement[] configurationElements = configurationElement.getChildren();

		return getMementoArray(configurationElements);
	}

	@Override
	public IMemento[] getChildren(String type) {
		IConfigurationElement[] configurationElements = configurationElement.getChildren(type);

		return getMementoArray(configurationElements);
	}

	private IMemento[] getMementoArray(IConfigurationElement[] configurationElements) {
		if (configurationElements != null && configurationElements.length > 0) {
			IMemento mementos[] = new ConfigurationElementMemento[configurationElements.length];

			for (int i = 0; i < configurationElements.length; i++) {
				mementos[i] = new ConfigurationElementMemento(configurationElements[i]);
			}

			return mementos;
		}

		return new IMemento[0];
	}

	@Override
	public Float getFloat(String key) {
		String string = configurationElement.getAttribute(key);

		if (string != null) {
			try {
				return Float.valueOf(string);
			} catch (NumberFormatException eNumberFormat) {
			}
		}

		return null;
	}

	@Override
	public String getType() {
		return configurationElement.getName();
	}

	@Override
	public String getID() {
		return configurationElement.getAttribute(TAG_ID);
	}

	@Override
	public Integer getInteger(String key) {
		String string = configurationElement.getAttribute(key);

		if (string != null) {
			try {
				return Integer.valueOf(string);
			} catch (NumberFormatException eNumberFormat) {
			}
		}

		return null;
	}

	@Override
	public String getString(String key) {
		return configurationElement.getAttribute(key);
	}

	@Override
	public Boolean getBoolean(String key) {
		String string = configurationElement.getAttribute(key);
		if (string == null) {
			return null;
		}
		return Boolean.valueOf(string);
	}

	@Override
	public String getTextData() {
		return configurationElement.getValue();
	}

	@Override
	public String[] getAttributeKeys() {
		return configurationElement.getAttributeNames();
	}

	@Override
	public void putFloat(String key, float value) {
	}

	@Override
	public void putInteger(String key, int value) {
	}

	@Override
	public void putMemento(IMemento memento) {
	}

	@Override
	public void putString(String key, String value) {
	}

	@Override
	public void putBoolean(String key, boolean value) {
	}

	@Override
	public void putTextData(String data) {
	}

	public String getContributorName() {
		return configurationElement.getContributor().getName();
	}

	public String getExtensionID() {
		return configurationElement.getDeclaringExtension().getUniqueIdentifier();
	}
}

Back to the top