/******************************************************************************* * Copyright (c) 2005 Oracle Corporation. * 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: * Ian Trimble - initial API and implementation *******************************************************************************/ package org.eclipse.jst.jsf.core.internal.jsflibraryregistry; /** * * A representation of the model object 'Plugin Provided JSF Library'. * * *

* The following features are supported: *

*

* * @see org.eclipse.jst.jsf.core.internal.jsflibraryregistry.JSFLibraryRegistryPackage#getPluginProvidedJSFLibrary() * @model * @generated * @deprecated */ public interface PluginProvidedJSFLibrary extends JSFLibrary{ /** * Separator between plugin id and JSF Library name */ public static final String ID_SEPARATOR = "$$"; //$NON-NLS-1$ /** * * * @generated */ String copyright = "Copyright (c) 2005 Oracle Corporation"; //$NON-NLS-1$ /** * Returns the value of the 'Plugin ID' attribute. * *

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

* * @return the value of the 'Plugin ID' attribute. * @see #setPluginID(String) * @see org.eclipse.jst.jsf.core.internal.jsflibraryregistry.JSFLibraryRegistryPackage#getPluginProvidedJSFLibrary_PluginID() * @model required="true" * @generated */ String getPluginID(); /** * Sets the value of the '{@link org.eclipse.jst.jsf.core.internal.jsflibraryregistry.PluginProvidedJSFLibrary#getPluginID Plugin ID}' attribute. * * * @param value the new value of the 'Plugin ID' attribute. * @see #getPluginID() * @generated */ void setPluginID(String value); /** * Returns the value of the 'Label' attribute. * *

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

* * @return the value of the 'Label' attribute. * @see #setLabel(String) * @see org.eclipse.jst.jsf.core.internal.jsflibraryregistry.JSFLibraryRegistryPackage#getPluginProvidedJSFLibrary_Label() * @model required="true" * @generated */ String getLabel(); /** * Sets the value of the '{@link org.eclipse.jst.jsf.core.internal.jsflibraryregistry.PluginProvidedJSFLibrary#getLabel Label}' attribute. * * * @param value the new value of the 'Label' attribute. * @see #getLabel() * @generated */ void setLabel(String value); } // PluginProvidedJSFLibrary