All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.aspectj.tools.ajdoc.CompilerWrapper Maven / Gradle / Ivy

/* *******************************************************************
 * Copyright (c) 2003 Contributors.
 * 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: 
 *     Mik Kersten     initial implementation 
 * ******************************************************************/
package org.aspectj.tools.ajdoc;

import org.aspectj.asm.AsmManager;
import org.aspectj.bridge.IMessage;

/**
 * Wrapper for ajdoc's use of the AspectJ compiler.
 * 
 * @author Mik Kersten
 */
public class CompilerWrapper extends org.aspectj.tools.ajc.Main {

	private static CompilerWrapper INSTANCE = null;

	public static AsmManager executeMain(String[] args) {
		INSTANCE = new CompilerWrapper();
		INSTANCE.runMain(args, true);
		return AsmManager.lastActiveStructureModel;
	}

	public static boolean hasErrors() {
		return INSTANCE.ourHandler.getErrors().length > 0;
	}

	public static IMessage[] getErrors() {
		return INSTANCE.ourHandler.getErrors();
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy