Skip to content

Commit

Permalink
Eclipse Java Compiler standalone for WALA source front end
Browse files Browse the repository at this point in the history
  • Loading branch information
juliandolby committed Oct 14, 2015
1 parent 31e4028 commit 556d8ff
Showing 1 changed file with 24 additions and 0 deletions.
@@ -0,0 +1,24 @@
/*******************************************************************************
* Copyright (c) 2013 IBM Corporation.
* 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 com.ibm.wala.cast.java.client;

import com.ibm.wala.cast.java.translator.jdt.ejc.EJCClassLoaderFactory;
import com.ibm.wala.classLoader.ClassLoaderFactory;
import com.ibm.wala.util.config.SetOfClasses;

public class EJCJavaSourceAnalysisEngine extends JavaSourceAnalysisEngine {

@Override
protected ClassLoaderFactory getClassLoaderFactory(SetOfClasses exclusions) {
return new EJCClassLoaderFactory(exclusions);
}

}

0 comments on commit 556d8ff

Please sign in to comment.