I have written a constructor and passing one boolean flag to decide which value to set to class variable. Code is as follows
public PDFParagraph(PDFPhrase phrase,boolean isRtl) {
super(phrase);
if(isRtl)
this.setAlignment(Element.ALIGN_RIGHT);
else
this.setAlignment(Element.ALIGN_LEFT);
}
Now I am confused and not sure if I shall add if...else conditions in constructor. Is it good style to set the class varible value?
Thanks, Hanumant.
thisis needed: (1) When there is ambiguity between a local and member var, e.g.this.myInt = myInt;, or (2) if you're passing the member as a parameter, e.g.new BinaryFormatter().Serialize(fileStream, this);This goes for variables, properties, functions, etc... – Ozzah Mar 30 '11 at 22:15