blob: f69dbd4779d3acbf75b61a845abab1ecb34ca847 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005 IBM Corporation 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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.wst.common.snippets.core;
/**
* Represents a category containing individual snippets.
* <p>
* Clients are not intended to implement this interface.
* </p>
* @since 1.0
*/
public interface ISnippetCategory extends ISnippetsEntry {
/**
* @return an array of the items within this category
*/
ISnippetItem[] getItems();
}