Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 69b53cababe5ebedb8924bec81c23f8737430e34 (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
/*******************************************************************************
 * Copyright (c) 2010 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.team.tests.ccvs.core.mappings.model;

import org.eclipse.core.resources.IFile;
import org.eclipse.core.resources.IProject;
import org.eclipse.core.resources.IResource;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.PlatformObject;

public abstract class ModelObject extends PlatformObject {

	private final IResource resource;

	public static ModelObject create(IResource resource) {
		switch (resource.getType()) {
		case IResource.PROJECT:
			return new ModelProject((IProject) resource);
		case IResource.FILE:
			if (ModelFile.isModFile(resource)) {
				return new ModelFile((IFile) resource);
			}
		}
		return null;
	}

	protected ModelObject(IResource resource) {
		this.resource = resource;
	}

	public abstract ModelObject[] getChildren() throws CoreException;

	public IResource getResource() {
		return resource;
	}

	public String getName() {
		return getResource().getName();
	}

	public String getPath() {
		return getResource().getFullPath().makeRelative().toString();
	}

	public ModelObject getParent() {
		return ModelObject.create(getResource().getParent());
	}

	public boolean equals(Object obj) {
		if (obj instanceof ModelObject) {
			ModelObject mr = (ModelObject) obj;
			return getResource().equals(mr.getResource());
		}
		return super.equals(obj);
	}

	public int hashCode() {
		return getResource().hashCode();
	}

	public void delete() throws CoreException {
		getResource().delete(false, null);
	}

	public ModelProject getProject() {
		return (ModelProject) ModelObject.create(getResource().getProject());
	}
}

Back to the top