Here's an example of what I mean:
class Foo
{
Object testObj1;
Object testObj2;
Foo.Bar BarObj = new Foo.Bar(testObj1, testObj2);
Object BarObj1 = BarObj.obj1;
static class Bar
{
public Object obj1;
public Object obj2;
public Bar(Object obj1, Object obj2)
{
this.obj1 = obj1;
this.obj2 = obj2;
}
}
}
I want to create a static nested class that makes its constructor parameters immediatly available to any class that instantiates it, is this the best way to do it?
EDIT: Okay, It's kind of hard to structure a question when you're not that good at Java. I'm an intermediate android developer, basically, BarObj should contain objects pertaining to a certain functionality in android, for example a 3-button menu. Each button contains some object resources, the Image object containing the button image, the Text object containing the button text etc. etc.
So I want to encapsulate each button with it's own resources into just one object, so that I can just parse that button object to a function that fx. manipulates the button image when the button is clicked. Does that make sense? Here is some updated code:
class Foo
{
Object Button1Image;
Object Button1Text;
Object Button2Image;
Object Button2Text;
Foo.Button Button1Obj = new Foo.Button(Button1Image, Button1Text);
Object Button1ObjImage = Button1Obj.obj1;
static class Button
{
public Object obj1;
public Object obj2;
public Button(Object obj1, Object obj2)
{
this.obj1 = obj1;
this.obj2 = obj2;
}
}
}
getBarObj1()method that has areturn this.barObj1.obj1;line. – adarshr Jul 11 '11 at 11:59Foounless it has to be hermetic. Then, obey the standard JavaBean conventions. – adarshr Jul 11 '11 at 12:07