/* * Minecraft Forge * Copyright (c) 2016. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation version 2.1 * of the License. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ package net.minecraftforge.fml.relauncher; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; import net.minecraftforge.fml.common.SidedProxy; /** * Marks the associated element as being only available on a certain {@link Side}. This is * generally meant for internal Forge and FML use only and should only be used on mod classes * when other more common mechanisms, such as using a {@link SidedProxy} fail to work. * * Note, this will <em>only</em> apply to the direct element marked. This code: * <code> @SideOnly public MyField field = new MyField();</code> will <strong>not</strong> work, as the initializer * is a separate piece of code to the actual field declaration, and will not be able to find * it's field on the wrong side. * * @author cpw * */ @Retention(RetentionPolicy.RUNTIME) @Target({ElementType.TYPE, ElementType.FIELD, ElementType.METHOD, ElementType.CONSTRUCTOR}) public @interface SideOnly { public Side value(); }