001/*
002 * Forge Mod Loader
003 * Copyright (c) 2012-2013 cpw.
004 * All rights reserved. This program and the accompanying materials
005 * are made available under the terms of the GNU Lesser Public License v2.1
006 * which accompanies this distribution, and is available at
007 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
008 * 
009 * Contributors:
010 *     cpw - implementation
011 */
012
013package cpw.mods.fml.common;
014
015import java.lang.annotation.ElementType;
016import java.lang.annotation.Retention;
017import java.lang.annotation.RetentionPolicy;
018import java.lang.annotation.Target;
019
020/**
021 * @author cpw
022 *
023 */
024@Retention(RetentionPolicy.RUNTIME)
025@Target(ElementType.FIELD)
026public @interface SidedProxy
027{
028    /**
029     * The name of the client side class to load and populate
030     */
031    String clientSide() default "";
032
033    /**
034     * The name of the server side class to load and populate
035     */
036    String serverSide() default "";
037
038    /**
039     * The name of a special bukkit plugin class to load and populate
040     */
041    String bukkitSide() default "";
042}