From dc3df3edd5843bde0c1335d6a8e460b2c832aa48 Mon Sep 17 00:00:00 2001 From: Foghrye4 Date: Sat, 17 Jun 2017 08:12:18 +0300 Subject: full project files --- javadoc/cpw/mods/fml/relauncher/SideOnly.html | 206 ++++++++++++++++++++++++++ 1 file changed, 206 insertions(+) create mode 100644 javadoc/cpw/mods/fml/relauncher/SideOnly.html (limited to 'javadoc/cpw/mods/fml/relauncher/SideOnly.html') diff --git a/javadoc/cpw/mods/fml/relauncher/SideOnly.html b/javadoc/cpw/mods/fml/relauncher/SideOnly.html new file mode 100644 index 0000000..724bd8c --- /dev/null +++ b/javadoc/cpw/mods/fml/relauncher/SideOnly.html @@ -0,0 +1,206 @@ + + + + + +SideOnly (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
cpw.mods.fml.relauncher
+

Annotation Type SideOnly

+
+
+
+
    +
  • +
    +
    +
    @Retention(value=RUNTIME)
    +@Target(value={TYPE,FIELD,METHOD,CONSTRUCTOR})
    +public @interface SideOnly
    +
    Marks the associated element as being only available on a certain 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 SidedProxy fail to work. + + Note, this will only apply to the direct element marked. This code: + @SideOnly public MyField field = new MyField(); will not 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.
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Required Element Summary

      + + + + + + + + + + +
      Required Elements 
      Modifier and TypeRequired Element and Description
      Sidevalue 
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Element Detail

      + + + +
        +
      • +

        value

        +
        public abstract Side value
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + -- cgit v1.2.3