blob: a4794c94332f1b22cf59db515a615e174fc11d1f [file] [log] [blame]
/**
* <copyright>
*
* Copyright (c) 2018 Willink Transformations and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* E.D.Willink - Initial API and implementation
*
* </copyright>
*/
package org.eclipse.qvtd.xml;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Processing Instruction</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.qvtd.xml.ProcessingInstruction#getTarget <em>Target</em>}</li>
* <li>{@link org.eclipse.qvtd.xml.ProcessingInstruction#getData <em>Data</em>}</li>
* </ul>
*
* @see org.eclipse.qvtd.xml.XMLmodelPackage#getProcessingInstruction()
* @model
* @generated
*/
public interface ProcessingInstruction extends Node {
/**
* Returns the value of the '<em><b>Target</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Target</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Target</em>' attribute.
* @see #setTarget(String)
* @see org.eclipse.qvtd.xml.XMLmodelPackage#getProcessingInstruction_Target()
* @model required="true" ordered="false"
* @generated
*/
String getTarget();
/**
* Sets the value of the '{@link org.eclipse.qvtd.xml.ProcessingInstruction#getTarget <em>Target</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Target</em>' attribute.
* @see #getTarget()
* @generated
*/
void setTarget(String value);
/**
* Returns the value of the '<em><b>Data</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Data</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Data</em>' attribute.
* @see #setData(String)
* @see org.eclipse.qvtd.xml.XMLmodelPackage#getProcessingInstruction_Data()
* @model required="true" ordered="false"
* @generated
*/
String getData();
/**
* Sets the value of the '{@link org.eclipse.qvtd.xml.ProcessingInstruction#getData <em>Data</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Data</em>' attribute.
* @see #getData()
* @generated
*/
void setData(String value);
} // ProcessingInstruction