/*- * ============LICENSE_START========================================== * OPENECOMP - DCAE * =================================================================== * Copyright (c) 2017 AT&T Intellectual Property. All rights reserved. * =================================================================== * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * 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. * ============LICENSE_END============================================ */ /** */ package org.openecomp.ncomp.core.function; /** * * A representation of the model object 'Match Instance Of'. * * *

* The following features are supported: *

* * * @see org.openecomp.ncomp.core.function.FunctionPackage#getFunctionMatchInstanceOf() * @model * @generated */ public interface FunctionMatchInstanceOf extends FunctionMatch { /** * Returns the value of the 'EPackage' attribute. * *

* If the meaning of the 'EPackage' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'EPackage' attribute. * @see #setEPackage(String) * @see org.openecomp.ncomp.core.function.FunctionPackage#getFunctionMatchInstanceOf_EPackage() * @model unique="false" * @generated */ String getEPackage(); /** * Sets the value of the '{@link org.openecomp.ncomp.core.function.FunctionMatchInstanceOf#getEPackage EPackage}' attribute. * * * @param value the new value of the 'EPackage' attribute. * @see #getEPackage() * @generated */ void setEPackage(String value); /** * Returns the value of the 'EName' attribute. * *

* If the meaning of the 'EName' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'EName' attribute. * @see #setEName(String) * @see org.openecomp.ncomp.core.function.FunctionPackage#getFunctionMatchInstanceOf_EName() * @model unique="false" * @generated */ String getEName(); /** * Sets the value of the '{@link org.openecomp.ncomp.core.function.FunctionMatchInstanceOf#getEName EName}' attribute. * * * @param value the new value of the 'EName' attribute. * @see #getEName() * @generated */ void setEName(String value); } // FunctionMatchInstanceOf