Skip to main content
summaryrefslogtreecommitdiffstats
blob: 19ed2bb5830583039b53cb6051adc079b45ffc61 (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
/********************************************************************************
 * Copyright (c) 2015-2018 Contributors to the Eclipse Foundation
 *
 * See the NOTICE file(s) distributed with this work for additional
 * information regarding copyright ownership.
 *
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Public License v. 2.0 which is available at
 * http://www.eclipse.org/legal/epl-2.0.
 *
 * SPDX-License-Identifier: EPL-2.0
 *
 ********************************************************************************/


package org.eclipse.mdm.api.base;

import java.util.List;

import org.eclipse.mdm.api.base.AttributeImpl.Type;
import org.eclipse.mdm.api.base.adapter.Attribute;
import org.eclipse.mdm.api.base.adapter.EntityType;
import org.eclipse.mdm.api.base.adapter.Relation;
import org.eclipse.mdm.api.base.adapter.RelationType;

public class EntityTypeImpl implements EntityType {

	@Override
	public String getSourceName() {
		return null;
	}

	@Override
	public String getName() {
		return null;
	}

	@Override
	public String getId() {
		return "0";
	}

	@Override
	public List<Attribute> getAttributes() {
		return null;
	}

	@Override
	public Attribute getIDAttribute() {
		return new AttributeImpl(Type.ID);
	}

	@Override
	public Attribute getAttribute(String name) {
		return null;
	}

	@Override
	public List<Relation> getRelations() {
		return null;
	}

	@Override
	public List<Relation> getParentRelations() {
		return null;
	}

	@Override
	public List<Relation> getChildRelations() {
		return null;
	}

	@Override
	public List<Relation> getInfoRelations() {
		return null;
	}

	@Override
	public List<Relation> getRelations(RelationType relationType) {
		return null;
	}

	@Override
	public Relation getRelation(EntityType target) {
		return null;
	}

	@Override
	public Relation getRelation(EntityType target, String name) {
		return null;
	}

}

Back to the top