blob: 82290ddb9e0f4bb9cbfafc9ac5a3794da9cb8d4e [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
* Raj Mandayam, IBM
* 136400 NextCatalog.getReferencedCatalog() takes a lot of time computing constant information
* Angelo Zerr <angelo.zerr@gmail.com> - copied from org.eclipse.wst.xml.core.internal.catalog.NextCatalog
* modified in order to process JSON Objects.
*******************************************************************************/
package org.eclipse.wst.json.core.internal.schema.catalog;
import org.eclipse.wst.json.core.schema.catalog.ICatalog;
import org.eclipse.wst.json.core.schema.catalog.ICatalogElement;
import org.eclipse.wst.json.core.schema.catalog.INextCatalog;
public class NextCatalog extends CatalogElement implements INextCatalog
{
private String location;
private ICatalog referencedCatalog;
public NextCatalog()
{
super(ICatalogElement.TYPE_NEXT_CATALOG);
}
public String getCatalogLocation()
{
return location;
}
public ICatalog getReferencedCatalog()
{
if (referencedCatalog == null)
{
referencedCatalog = ((Catalog)ownerCatalog).getCatalogSet().lookupOrCreateCatalog(getId(), getAbsolutePath(location));
}
return referencedCatalog;
}
public void setCatalogLocation(String uri)
{
location = uri;
referencedCatalog = null;
}
public Object clone()
{
NextCatalog nextCatalog = (NextCatalog)super.clone();
nextCatalog.setCatalogLocation(location);
return nextCatalog;
}
}