blob: de4e7d4b31535a1516e141267a6eb2adb2faec97 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009, 2014 Xored Software Inc and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Xored Software Inc - initial API and implementation and/or initial documentation
*******************************************************************************/
package org.eclipse.rcptt.tesla.ecl.model;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.rcptt.ecl.core.Command;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Is Empty</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.rcptt.tesla.ecl.model.IsEmpty#getInput <em>Input</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.rcptt.tesla.ecl.model.TeslaPackage#getIsEmpty()
* @model annotation="http://www.eclipse.org/ecl/docs description='Checks if content of control is empty' returns='true if the content of control is empty or false otherwise' example='get-editor WorkbenchContext | get-section Workbench | get-editbox -after [get-label \"Perspective id:\"] | get-property text | is-empty | verify-false'"
* @generated
*/
public interface IsEmpty extends Command {
/**
* Returns the value of the '<em><b>Input</b></em>' reference.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Input</em>' reference isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Input</em>' reference.
* @see #setInput(EObject)
* @see org.eclipse.rcptt.tesla.ecl.model.TeslaPackage#getIsEmpty_Input()
* @model required="true"
* annotation="http://www.eclipse.org/ecl/docs description='Path to control which emptyness has to be checked'"
* @generated
*/
EObject getInput();
/**
* Sets the value of the '{@link org.eclipse.rcptt.tesla.ecl.model.IsEmpty#getInput <em>Input</em>}' reference.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Input</em>' reference.
* @see #getInput()
* @generated
*/
void setInput(EObject value);
} // IsEmpty