I have a class file name serializedObject, I will like to call this class file in another class file and use it's method.
I want to declare the class file became and array to being use in another class file. Then I declare something like below:
serializedObject[] setData = new serializedObject[10];
and use it into a for loop
for(int i=0; i<clientInfo.length; i++)
{
double locationX = clientInfo[i].getLocation().getX();
double locationY = clientInfo[i].getLocation().getY();
String name = clientInfo[i].getName();
double mood = clientInfo[i].getMood();
double hunger = clientInfo[i].getHunger();
double chargestate = clientInfo[i].getChargestate();
setData[i].setAll(locationX, locationY, name, mood, hunger, chargestate);
System.out.println(setData[i].getName());
}
In the serializedObject class I have the set method and also get method, but seems like not work for this. What can i do instead of this way to get an array method? Thanks for any comment and help.
The system seems like cant really set my value into the method, i cant get the any value from the
System.out.println(setData[i].getName());
but the system doesn't have any compile error.
Here will be my serializedObject class file
public class serializedObject
{
public static double locationX;
public static double locationY;
public static String name;
public static double mood;
public static double hunger;
public static double chargestate;
public serializedObject()
{
}
public void setAll(double locationX,double locationY, String name,double mood,double hunger, double chargestate)
{
this.locationX = locationX;
this.locationY = locationY;
this.name = name;
this.mood = mood;
this.hunger = hunger;
this.chargestate = chargestate;
}
public String getName()
{
return this.name;
}
public double getLocationX()
{
return this.locationX;
}
public double getLocationY()
{
return this.locationY;
}
public double getMood()
{
return this.mood;
}
public double getHunger()
{
return this.hunger;
}
public double getChargestate()
{
return this.chargestate;
}
}
setAllmethod isn't working if you don't show us yoursetAllmethod. – Mark Peters Apr 15 '11 at 13:59