org.nasdanika.models.rules.MoveResourceAction Maven / Gradle / Ivy
/**
*/
package org.nasdanika.models.rules;
/**
*
* A representation of the model object 'Move Resource Action'.
*
*
*
* Moves (renames) the resources - changes its identifier
*
*
*
* The following features are supported:
*
*
* - {@link org.nasdanika.models.rules.MoveResourceAction#getNewIdentifier New Identifier}
*
*
* @see org.nasdanika.models.rules.RulesPackage#getMoveResourceAction()
* @model
* @generated
*/
public interface MoveResourceAction extends ResourceAction {
/**
* Returns the value of the 'New Identifier' attribute.
*
*
*
* New identifier
*
* @return the value of the 'New Identifier' attribute.
* @see #setNewIdentifier(String)
* @see org.nasdanika.models.rules.RulesPackage#getMoveResourceAction_NewIdentifier()
* @model
* @generated
*/
String getNewIdentifier();
/**
* Sets the value of the '{@link org.nasdanika.models.rules.MoveResourceAction#getNewIdentifier New Identifier}' attribute.
*
*
* @param value the new value of the 'New Identifier' attribute.
* @see #getNewIdentifier()
* @generated
*/
void setNewIdentifier(String value);
} // MoveResourceAction