I created a new object, and it is a parameter for a new constuctor. I can't define a value in the new constructors class for it to have a spot to save the information to, and for me to thus easily access it.
so for example...
private int x;
private int y;
public MyConstructor( int a, int b, newObject c )
{
x = a;
y = b;
}
public newObject getNewObject()
{
? help ?
}
any ideas?