Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: f890e48eadad6917165623c569456ea53f75a392 (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
/*******************************************************************************
 * Copyright (c) 2005 IBM Corporation 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:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.debug.internal.ui.views.memory;

import java.util.ArrayList;

/**
 * Class for managing the secondary ids for Memory View
 *
 */
public class MemoryViewIdRegistry {

	private static ArrayList<String> fgRegistry;

	public static void registerView(String secondaryId) {
		ArrayList<String> registry = getRegistry();

		if (!registry.contains(secondaryId)) {
			registry.add(secondaryId);
		}
	}

	public static void deregisterView(String secondaryId) {
		ArrayList<String> registry = getRegistry();

		if (registry.contains(secondaryId)) {
			registry.remove(secondaryId);
		}
	}

	public static String getUniqueSecondaryId(String viewId) {
		int cnt = 0;
		String id = viewId + "." + cnt; //$NON-NLS-1$
		ArrayList<String> registry = getRegistry();
		while (registry.contains(id)) {
			cnt++;
			id = viewId + "." + cnt; //$NON-NLS-1$
		}
		return id;
	}

	private static ArrayList<String> getRegistry() {
		if (fgRegistry == null)
			fgRegistry = new ArrayList<>();

		return fgRegistry;
	}
}

Back to the top