/* * Copyright 2015 Red Hat, Inc. and/or its affiliates. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ /** */ package org.jboss.drools; import org.eclipse.emf.ecore.EObject; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>On Entry Script Type</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.jboss.drools.OnEntryScriptType#getScript <em>Script</em>}</li> * <li>{@link org.jboss.drools.OnEntryScriptType#getScriptFormat <em>Script Format</em>}</li> * </ul> * </p> * * @see org.jboss.drools.DroolsPackage#getOnEntryScriptType() * @model extendedMetaData="name='onEntry-script_._type' kind='elementOnly'" * @generated */ public interface OnEntryScriptType extends EObject { /** * Returns the value of the '<em><b>Script</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Script</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Script</em>' attribute. * @see #setScript(String) * @see org.jboss.drools.DroolsPackage#getOnEntryScriptType_Script() * @model dataType="org.eclipse.emf.ecore.xml.type.String" required="true" * extendedMetaData="kind='element' name='script' namespace='##targetNamespace'" * @generated */ String getScript(); /** * Sets the value of the '{@link org.jboss.drools.OnEntryScriptType#getScript <em>Script</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Script</em>' attribute. * @see #getScript() * @generated */ void setScript(String value); /** * Returns the value of the '<em><b>Script Format</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Script Format</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Script Format</em>' attribute. * @see #setScriptFormat(String) * @see org.jboss.drools.DroolsPackage#getOnEntryScriptType_ScriptFormat() * @model dataType="org.eclipse.emf.ecore.xml.type.String" required="true" * extendedMetaData="kind='attribute' name='scriptFormat'" * @generated */ String getScriptFormat(); /** * Sets the value of the '{@link org.jboss.drools.OnEntryScriptType#getScriptFormat <em>Script Format</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Script Format</em>' attribute. * @see #getScriptFormat() * @generated */ void setScriptFormat(String value); } // OnEntryScriptType