Skip to main content
summaryrefslogtreecommitdiffstats
blob: 288569618fdf6f3f06a1ddc04f25b70ed5cebd64 (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
/********************************************************************************
 * 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.model;

/**
 * This interface extends the {@link Entity} interface and provides getter and
 * setter methods for the 'Description' field of an entity.
 *
 * @since 1.0.0
 * @author Viktor Stoehr, Gigatronik Ingolstadt GmbH
 * @author Sebastian Dirsch, Gigatronik Ingolstadt GmbH
 */
public interface Describable extends Entity {

	// ======================================================================
	// Class variables
	// ======================================================================

	/**
	 * The 'Description' attribute name.
	 */
	String ATTR_DESCRIPTION = "Description";

	// ======================================================================
	// Public methods
	// ======================================================================

	/**
	 * Returns the description of this entity.
	 *
	 * @return The description is returned.
	 */
	default String getDescription() {
		return getValue(ATTR_DESCRIPTION).extract();
	}

	/**
	 * Sets new description for this entity.
	 *
	 * @param description The new description.
	 */
	default void setDescription(String description) {
		getValue(ATTR_DESCRIPTION).set(description);
	}

}

Back to the top