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

org.androidannotations.plugin.AndroidAnnotationsPlugin Maven / Gradle / Ivy

/**
 * Copyright (C) 2010-2016 eBusiness Information, Excilys Group
 *
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
 * use this file except in compliance with the License. You may obtain a copy of
 * the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed To in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
 * License for the specific language governing permissions and limitations under
 * the License.
 */
package org.androidannotations.plugin;

import java.io.FileNotFoundException;
import java.net.URL;
import java.util.Collections;
import java.util.List;
import java.util.Properties;

import org.androidannotations.AndroidAnnotationsEnvironment;
import org.androidannotations.Option;
import org.androidannotations.handler.AnnotationHandler;
import org.androidannotations.internal.exception.VersionNotFoundException;
import org.androidannotations.logger.Logger;
import org.androidannotations.logger.LoggerFactory;

public abstract class AndroidAnnotationsPlugin {

	private final Logger logger = LoggerFactory.getLogger(getClass());

	private String version;
	private String apiVersion;

	public abstract String getName();

	public abstract List> getHandlers(AndroidAnnotationsEnvironment androidAnnotationEnv);

	@Override
	public String toString() {
		return getName();
	}

	public List




© 2015 - 2024 Weber Informatics LLC | Privacy Policy