blob: 9f5c4864579f0f54fc3dbb4552e900ebafe4ba12 [file] [log] [blame]
/*******************************************************************************
* Copyright (C) 2021 the Eclipse BaSyx Authors
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
******************************************************************************/
package org.eclipse.basyx.submodel.metamodel.api.submodelelement.dataelement;
import org.eclipse.basyx.submodel.metamodel.api.IElement;
import org.eclipse.basyx.submodel.metamodel.api.reference.IReference;
import org.eclipse.basyx.submodel.metamodel.map.submodelelement.dataelement.property.valuetype.ValueType;
/**
* Interface for IElement properties
*
* @author kuhn
*
*/
public interface IProperty extends IElement, IDataElement {
/**
* Gets the data type of the value
*
* @return
*/
public ValueType getValueType();
/**
* Gets the reference to the global unique id of a coded value.
*
* @return
*/
public IReference getValueId();
}