aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/xmod/thaumcraft/aspect
diff options
context:
space:
mode:
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/thaumcraft/aspect')
-rw-r--r--src/Java/gtPlusPlus/xmod/thaumcraft/aspect/TC_ResearchNoteData_Wrapper.java4
-rw-r--r--src/Java/gtPlusPlus/xmod/thaumcraft/aspect/TC_ResearchPage_Wrapper.java19
2 files changed, 16 insertions, 7 deletions
diff --git a/src/Java/gtPlusPlus/xmod/thaumcraft/aspect/TC_ResearchNoteData_Wrapper.java b/src/Java/gtPlusPlus/xmod/thaumcraft/aspect/TC_ResearchNoteData_Wrapper.java
index 64f1ce088a..dbec20cdb8 100644
--- a/src/Java/gtPlusPlus/xmod/thaumcraft/aspect/TC_ResearchNoteData_Wrapper.java
+++ b/src/Java/gtPlusPlus/xmod/thaumcraft/aspect/TC_ResearchNoteData_Wrapper.java
@@ -2,6 +2,10 @@ package gtPlusPlus.xmod.thaumcraft.aspect;
public class TC_ResearchNoteData_Wrapper {
+ public TC_ResearchNoteData_Wrapper(Object researchNoteData) {
+ // TODO Auto-generated constructor stub
+ }
+
public Object getResearchNoteData() {
// TODO Auto-generated method stub
return null;
diff --git a/src/Java/gtPlusPlus/xmod/thaumcraft/aspect/TC_ResearchPage_Wrapper.java b/src/Java/gtPlusPlus/xmod/thaumcraft/aspect/TC_ResearchPage_Wrapper.java
index 256e9c19ed..23d3a9f575 100644
--- a/src/Java/gtPlusPlus/xmod/thaumcraft/aspect/TC_ResearchPage_Wrapper.java
+++ b/src/Java/gtPlusPlus/xmod/thaumcraft/aspect/TC_ResearchPage_Wrapper.java
@@ -1,6 +1,11 @@
package gtPlusPlus.xmod.thaumcraft.aspect;
import java.util.List;
+
+import gtPlusPlus.xmod.thaumcraft.objects.wrapper.recipe.TC_CrucibleRecipe_Wrapper;
+import gtPlusPlus.xmod.thaumcraft.objects.wrapper.recipe.TC_IArcaneRecipe_Wrapper;
+import gtPlusPlus.xmod.thaumcraft.objects.wrapper.recipe.TC_InfusionEnchantmentRecipe_Wrapper;
+import gtPlusPlus.xmod.thaumcraft.objects.wrapper.recipe.TC_InfusionRecipe_Wrapper;
import net.minecraft.item.ItemStack;
import net.minecraft.item.crafting.FurnaceRecipes;
import net.minecraft.item.crafting.IRecipe;
@@ -66,7 +71,7 @@ public class TC_ResearchPage_Wrapper {
this.recipe = recipe;
}
- public TC_ResearchPage_Wrapper(IArcaneRecipe[] recipe) {
+ public TC_ResearchPage_Wrapper(TC_IArcaneRecipe_Wrapper[] recipe) {
this.type = TC_PageType_Wrapper.TEXT;
this.text = null;
this.research = null;
@@ -78,7 +83,7 @@ public class TC_ResearchPage_Wrapper {
this.recipe = recipe;
}
- public TC_ResearchPage_Wrapper(CrucibleRecipe[] recipe) {
+ public TC_ResearchPage_Wrapper(TC_CrucibleRecipe_Wrapper[] recipe) {
this.type = TC_PageType_Wrapper.TEXT;
this.text = null;
this.research = null;
@@ -90,7 +95,7 @@ public class TC_ResearchPage_Wrapper {
this.recipe = recipe;
}
- public TC_ResearchPage_Wrapper(InfusionRecipe[] recipe) {
+ public TC_ResearchPage_Wrapper(TC_InfusionRecipe_Wrapper[] recipe) {
this.type = TC_PageType_Wrapper.TEXT;
this.text = null;
this.research = null;
@@ -114,7 +119,7 @@ public class TC_ResearchPage_Wrapper {
this.recipe = recipe;
}
- public TC_ResearchPage_Wrapper(IArcaneRecipe recipe) {
+ public TC_ResearchPage_Wrapper(TC_IArcaneRecipe_Wrapper recipe) {
this.type = TC_PageType_Wrapper.TEXT;
this.text = null;
this.research = null;
@@ -127,7 +132,7 @@ public class TC_ResearchPage_Wrapper {
this.recipeOutput = recipe.getRecipeOutput();
}
- public TC_ResearchPage_Wrapper(CrucibleRecipe recipe) {
+ public TC_ResearchPage_Wrapper(TC_CrucibleRecipe_Wrapper recipe) {
this.type = TC_PageType_Wrapper.TEXT;
this.text = null;
this.research = null;
@@ -153,7 +158,7 @@ public class TC_ResearchPage_Wrapper {
this.recipeOutput = FurnaceRecipes.smelting().getSmeltingResult(input);
}
- public TC_ResearchPage_Wrapper(InfusionRecipe recipe) {
+ public TC_ResearchPage_Wrapper(TC_InfusionRecipe_Wrapper recipe) {
this.type = TC_PageType_Wrapper.TEXT;
this.text = null;
this.research = null;
@@ -171,7 +176,7 @@ public class TC_ResearchPage_Wrapper {
}
- public TC_ResearchPage_Wrapper(InfusionEnchantmentRecipe recipe) {
+ public TC_ResearchPage_Wrapper(TC_InfusionEnchantmentRecipe_Wrapper recipe) {
this.type = TC_PageType_Wrapper.TEXT;
this.text = null;
this.research = null;