All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.omg.spec.bpmn.model.TResourceParameter Maven / Gradle / Ivy

/**
 * Copyright (C) 2023 BonitaSoft S.A.
 * BonitaSoft, 32 rue Gustave Eiffel - 38000 Grenoble
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 2.0 of the License, or
 * (at your option) any later version.
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * GNU General Public License for more details.
 * You should have received a copy of the GNU General Public License
 * along with this program. If not, see .
 */
package org.omg.spec.bpmn.model;

import javax.xml.namespace.QName;

/**
 * 
 * A representation of the model object 'TResource Parameter'.
 * 
 *
 * 

* The following features are supported: *

*
    *
  • {@link org.omg.spec.bpmn.model.TResourceParameter#isIsRequired Is Required}
  • *
  • {@link org.omg.spec.bpmn.model.TResourceParameter#getName Name}
  • *
  • {@link org.omg.spec.bpmn.model.TResourceParameter#getType Type}
  • *
* * @see org.omg.spec.bpmn.model.ModelPackage#getTResourceParameter() * @model extendedMetaData="name='tResourceParameter' kind='elementOnly'" * @generated */ public interface TResourceParameter extends TBaseElement { /** * Returns the value of the 'Is Required' attribute. * * * @return the value of the 'Is Required' attribute. * @see #isSetIsRequired() * @see #unsetIsRequired() * @see #setIsRequired(boolean) * @see org.omg.spec.bpmn.model.ModelPackage#getTResourceParameter_IsRequired() * @model unsettable="true" dataType="org.eclipse.emf.ecore.xml.type.Boolean" * extendedMetaData="kind='attribute' name='isRequired'" * @generated */ boolean isIsRequired(); /** * Sets the value of the '{@link org.omg.spec.bpmn.model.TResourceParameter#isIsRequired Is Required}' attribute. * * * @param value the new value of the 'Is Required' attribute. * @see #isSetIsRequired() * @see #unsetIsRequired() * @see #isIsRequired() * @generated */ void setIsRequired(boolean value); /** * Unsets the value of the '{@link org.omg.spec.bpmn.model.TResourceParameter#isIsRequired Is Required}' attribute. * * * @see #isSetIsRequired() * @see #isIsRequired() * @see #setIsRequired(boolean) * @generated */ void unsetIsRequired(); /** * Returns whether the value of the '{@link org.omg.spec.bpmn.model.TResourceParameter#isIsRequired Is Required}' attribute is set. * * * @return whether the value of the 'Is Required' attribute is set. * @see #unsetIsRequired() * @see #isIsRequired() * @see #setIsRequired(boolean) * @generated */ boolean isSetIsRequired(); /** * Returns the value of the 'Name' attribute. * * * @return the value of the 'Name' attribute. * @see #setName(String) * @see org.omg.spec.bpmn.model.ModelPackage#getTResourceParameter_Name() * @model dataType="org.eclipse.emf.ecore.xml.type.String" * extendedMetaData="kind='attribute' name='name'" * @generated */ String getName(); /** * Sets the value of the '{@link org.omg.spec.bpmn.model.TResourceParameter#getName Name}' attribute. * * * @param value the new value of the 'Name' attribute. * @see #getName() * @generated */ void setName(String value); /** * Returns the value of the 'Type' attribute. * * * @return the value of the 'Type' attribute. * @see #setType(QName) * @see org.omg.spec.bpmn.model.ModelPackage#getTResourceParameter_Type() * @model dataType="org.eclipse.emf.ecore.xml.type.QName" * extendedMetaData="kind='attribute' name='type'" * @generated */ QName getType(); /** * Sets the value of the '{@link org.omg.spec.bpmn.model.TResourceParameter#getType Type}' attribute. * * * @param value the new value of the 'Type' attribute. * @see #getType() * @generated */ void setType(QName value); } // TResourceParameter




© 2015 - 2025 Weber Informatics LLC | Privacy Policy