Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: ea6df29b558859be4267de72dc8a2f8cff2bd96b (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
/*******************************************************************************
 * Copyright (c) 2011 Wind River Systems, Inc. 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:
 * Wind River Systems - initial API and implementation
 *******************************************************************************/
package org.eclipse.tcf.te.tcf.locator.services;

import org.eclipse.core.runtime.Assert;
import org.eclipse.core.runtime.PlatformObject;
import org.eclipse.tcf.te.tcf.locator.interfaces.nodes.ILocatorModel;
import org.eclipse.tcf.te.tcf.locator.interfaces.services.ILocatorModelService;


/**
 * Abstract locator model service base implementation.
 */
public abstract class AbstractLocatorModelService extends PlatformObject implements ILocatorModelService {
	// Reference to the parent locator model
	private final ILocatorModel locatorModel;

	/**
	 * Constructor.
	 *
	 * @param parentModel The parent locator model instance. Must not be <code>null</code>.
	 */
	public AbstractLocatorModelService(ILocatorModel parentModel) {
		Assert.isNotNull(parentModel);
		locatorModel = parentModel;
	}

	/* (non-Javadoc)
	 * @see org.eclipse.tcf.te.tcf.locator.interfaces.services.ILocatorModelService#getLocatorModel()
	 */
	@Override
	public final ILocatorModel getLocatorModel() {
		return locatorModel;
	}
}

Back to the top