Package org.eclipse.jst.jsp.css.core.internal.encoding

Source Code of org.eclipse.jst.jsp.css.core.internal.encoding.JSPedCSSDocumentLoader

/*******************************************************************************
* Copyright (c) 2006 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.css.core.internal.encoding;

import org.eclipse.jst.jsp.css.core.internal.parser.JSPedCSSSourceParser;
import org.eclipse.wst.css.core.internal.encoding.CSSDocumentLoader;
import org.eclipse.wst.sse.core.internal.document.IDocumentLoader;
import org.eclipse.wst.sse.core.internal.ltk.parser.RegionParser;

public class JSPedCSSDocumentLoader extends CSSDocumentLoader {
public RegionParser getParser() {
  return new JSPedCSSSourceParser();
}
public IDocumentLoader newInstance() {
  return new JSPedCSSDocumentLoader();
}
}
TOP

Related Classes of org.eclipse.jst.jsp.css.core.internal.encoding.JSPedCSSDocumentLoader

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.