blob: 80ec4289c5588cee753e6dfa549c7fdc0483d487 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010 Angelo Zerr 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:
* Angelo Zerr <angelo.zerr@gmail.com> - Initial API and implementation
*******************************************************************************/
package org.eclipse.jst.server.jetty.core.internal.xml.jetyy70.server;
import java.io.File;
import org.eclipse.core.runtime.IPath;
import org.eclipse.jst.server.jetty.core.internal.xml.XMLElement;
public class WebApp extends XMLElement
{
private File file;
private IPath path;
public File getFile()
{
return file;
}
public void setFile(File file)
{
this.file = file;
}
public IPath getPath()
{
return path;
}
public void setPath(IPath path)
{
this.path = path;
}
}