blob: 5df8d009e691e91237b8fbd3dad263811be7652c [file] [log] [blame]
/**
* Copyright (c) 2010 Attensity Europe GmbH. 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
*/
package org.eclipse.smila.processing.designer.model.record;
/**
* <!-- begin-user-doc --> A representation of the model object '<em><b>Any</b></em>'. <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.smila.processing.designer.model.record.RecordAny#getKey <em>Key</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.smila.processing.designer.model.record.RecordPackage#getRecordAny()
* @model abstract="true"
* @generated
*/
public interface RecordAny extends ExtensionElement {
/**
* Returns the value of the '<em><b>Key</b></em>' attribute. <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Key</em>' attribute isn't clear, there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
*
* @return the value of the '<em>Key</em>' attribute.
* @see #setKey(String)
* @see org.eclipse.smila.processing.designer.model.record.RecordPackage#getRecordAny_Key()
* @model
* @generated
*/
String getKey();
/**
* Sets the value of the '{@link org.eclipse.smila.processing.designer.model.record.RecordAny#getKey <em>Key</em>}'
* attribute. <!-- begin-user-doc --> <!-- end-user-doc -->
*
* @param value
* the new value of the '<em>Key</em>' attribute.
* @see #getKey()
* @generated
*/
void setKey(String value);
/**
* Indicates that this object is a map.
*
* @return {@code true} if this object is an instance of {@link RecordMap}
*/
public boolean isMap();
/**
* Indicates that this object is a sequence.
*
* @return {@code true} if this object is an instance of {@link RecordSeq}
*/
public boolean isSeq();
/**
* Indicates that this object is a (simple) value.
*
* @return {@code true} if this object is an instance of {@link RecordVal}
*/
public boolean isVal();
} // RecordAny