blob: 3ea9edfb44f8e95cca250b5871ddda1018d59b21 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2001, 2004 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.jst.jsp.core.contentmodel;
import java.util.ArrayList;
import java.util.List;
import org.eclipse.core.runtime.IPath;
public class ServletRecord implements ITaglibRecord {
IPath location;
List urlRecords = new ArrayList(0);
public short getRecordType() {
return ITaglibRecord.WEB_XML;
}
/**
* @return Returns the webxml.
*/
public IPath getWebXML() {
return location;
}
/**
*
*/
public List getURLRecords() {
return urlRecords;
}
}