blob: a49ace96ef97ff99253ec485453a8256dce28108 [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.ecl.platform.objects;
import org.eclipse.emf.common.util.EList;
import org.eclipse.emf.ecore.EObject;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Plugin</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.rcptt.ecl.platform.objects.Plugin#getId <em>Id</em>}</li>
* <li>{@link org.eclipse.rcptt.ecl.platform.objects.Plugin#getVersion <em>Version</em>}</li>
* <li>{@link org.eclipse.rcptt.ecl.platform.objects.Plugin#getName <em>Name</em>}</li>
* <li>{@link org.eclipse.rcptt.ecl.platform.objects.Plugin#getState <em>State</em>}</li>
* <li>{@link org.eclipse.rcptt.ecl.platform.objects.Plugin#getRequiredBundles <em>Required Bundles</em>}</li>
* <li>{@link org.eclipse.rcptt.ecl.platform.objects.Plugin#getImportedPackages <em>Imported Packages</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.rcptt.ecl.platform.objects.ObjectsPackage#getPlugin()
* @model
* @generated
*/
public interface Plugin extends EObject {
/**
* Returns the value of the '<em><b>Id</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Id</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Id</em>' attribute.
* @see #setId(String)
* @see org.eclipse.rcptt.ecl.platform.objects.ObjectsPackage#getPlugin_Id()
* @model
* @generated
*/
String getId();
/**
* Sets the value of the '{@link org.eclipse.rcptt.ecl.platform.objects.Plugin#getId <em>Id</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Id</em>' attribute.
* @see #getId()
* @generated
*/
void setId(String value);
/**
* Returns the value of the '<em><b>Version</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Version</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Version</em>' attribute.
* @see #setVersion(String)
* @see org.eclipse.rcptt.ecl.platform.objects.ObjectsPackage#getPlugin_Version()
* @model
* @generated
*/
String getVersion();
/**
* Sets the value of the '{@link org.eclipse.rcptt.ecl.platform.objects.Plugin#getVersion <em>Version</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Version</em>' attribute.
* @see #getVersion()
* @generated
*/
void setVersion(String value);
/**
* Returns the value of the '<em><b>Name</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Name</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Name</em>' attribute.
* @see #setName(String)
* @see org.eclipse.rcptt.ecl.platform.objects.ObjectsPackage#getPlugin_Name()
* @model
* @generated
*/
String getName();
/**
* Sets the value of the '{@link org.eclipse.rcptt.ecl.platform.objects.Plugin#getName <em>Name</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Name</em>' attribute.
* @see #getName()
* @generated
*/
void setName(String value);
/**
* Returns the value of the '<em><b>State</b></em>' attribute.
* The literals are from the enumeration {@link org.eclipse.rcptt.ecl.platform.objects.PluginState}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>State</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>State</em>' attribute.
* @see org.eclipse.rcptt.ecl.platform.objects.PluginState
* @see #setState(PluginState)
* @see org.eclipse.rcptt.ecl.platform.objects.ObjectsPackage#getPlugin_State()
* @model
* @generated
*/
PluginState getState();
/**
* Sets the value of the '{@link org.eclipse.rcptt.ecl.platform.objects.Plugin#getState <em>State</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>State</em>' attribute.
* @see org.eclipse.rcptt.ecl.platform.objects.PluginState
* @see #getState()
* @generated
*/
void setState(PluginState value);
/**
* Returns the value of the '<em><b>Required Bundles</b></em>' attribute list.
* The list contents are of type {@link java.lang.String}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Required Bundles</em>' attribute list isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Required Bundles</em>' attribute list.
* @see org.eclipse.rcptt.ecl.platform.objects.ObjectsPackage#getPlugin_RequiredBundles()
* @model default=""
* @generated
*/
EList<String> getRequiredBundles();
/**
* Returns the value of the '<em><b>Imported Packages</b></em>' attribute list.
* The list contents are of type {@link java.lang.String}.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Imported Packages</em>' attribute list isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Imported Packages</em>' attribute list.
* @see org.eclipse.rcptt.ecl.platform.objects.ObjectsPackage#getPlugin_ImportedPackages()
* @model default=""
* @generated
*/
EList<String> getImportedPackages();
} // Plugin