blob: 6ab76eff9fbaf778ea9e4af0dcf5b3a29bc531e2 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2001, 2007 Oracle 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:
* Oracle Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jst.jsf.core.jsflibraryconfiguration.internal;
import org.eclipse.jst.jsf.core.internal.jsflibraryregistry.JSFLibrary;
import org.eclipse.jst.jsf.core.jsflibraryconfiguration.JSFLibraryReferenceServerSupplied;
import org.eclipse.jst.jsf.core.jsflibraryconfiguration.JSFVersion;
/**
* @author gekessle
*
*/
public class JSFLibraryReferenceServerSuppliedImpl
extends AbstractJSFLibraryReferenceImpl
implements JSFLibraryReferenceServerSupplied {
/**
* Constructor
*/
public JSFLibraryReferenceServerSuppliedImpl(){
//TODO: replace label with constant
super(JSFLibraryReferenceServerSupplied.ID, "Server Supplied", true);
}
public String toString() {
StringBuffer buf = new StringBuffer("ServerSupplied: (");
buf.append(super.toString());
buf.append(")");
return buf.toString();
}
protected JSFLibrary getLibrary(){
return null;
}
public JSFVersion getMaxSupportedVersion() {
return JSFVersion.UNKNOWN;
}
//
}