blob: cf3b7967b2d99ff1e9a1347cc74071917639eb75 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2002, 2015 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
* Jens Lukowski/Innoopract - initial renaming/restructuring
* Angelo Zerr <angelo.zerr@gmail.com> - copied from org.eclipse.wst.xml.core.internal.catalog.provisional.ICatalogEntry
* modified in order to process JSON Objects.
*******************************************************************************/
package org.eclipse.wst.json.core.schema.catalog;
/**
*
* <p>
* This interface is not intended to be implemented by clients.
* </p>
*
*/
public interface ICatalogEntry extends ICatalogElement
{
/** The Schema Catalog Entry type. */
public static final int ENTRY_TYPE_SCHEMA = 2;
/** Attribute name for Web address of catalog entry */
public static final String ATTR_WEB_URL = "webURL"; //$NON-NLS-1$
/**
*
* @param entryType
*/
public void setEntryType(int entryType);
/**
*
* @return
*/
public int getEntryType();
/**
*
* @param key
*/
public void setKey(String key);
/**
*
* @return
*/
public String getKey();
/**
*
* @return
*/
public String getURI();
/**
*
* @param uri
*/
public void setURI(String uri);
}