Q
qwertmonkey
Try reducing your problem to an SSCCE <http://sscce.org> ...
~
Sorry! The thing is that I wasn't sure what was causing the problem and I did
attempt to reduce that code to an SSCCE.
~
The original code is based on reflection
~
You would make a good detective ;-)
~
The whole purpose of doing things this way is not using a cast within verifyCtxt,
where using the strategy pattern an object of a certain class (which is given via
input parameter (.verifyCtxt(aSAr, _.getClass()))) is created
~
I am trying to do everything within DTO_T_Ctxt06 through templates, so, users
don't have to code this class and for reasons I still don't get I am not able
to get this right
~
Say, a user goes:
// __
class Ho3K{
private String aS;
Ho3K(){}
public void setCtxt(String aS){ this.aS = aS; }
public String toString(){ return(" aS: |" + aS + "|"); }
}
~
...
Ho3K Ho3 = new Ho3K();
aSAr = new String[]{"ho, ho, ho!"};
DTO_T_Ctxt06<Ho3K> Ho3Ctxt = new DTO_T_Ctxt06<Ho3K>();
Ho3Ctxt.verifyCtxt(aSAr, Ho3.getClass());
System.err.println("// __ Ho3.getCtxtDTO() : |" + Ho3.getCtxtDTO() + "|");
~
How do you do such a thing?
~
lbrtchx
~
Sorry! The thing is that I wasn't sure what was causing the problem and I did
attempt to reduce that code to an SSCCE.
~
The original code is based on reflection
~
~This looks like it was copied from C++ code which was copied from C code.
You would make a good detective ;-)
~
~((IADObj) tCtxt).setCtxt((new Integer(aSAr[0])).intValue(), aSAr[1], (new Long(aSAr[0])).longValue());
The whole purpose of doing things this way is not using a cast within verifyCtxt,
where using the strategy pattern an object of a certain class (which is given via
input parameter (.verifyCtxt(aSAr, _.getClass()))) is created
~
I am trying to do everything within DTO_T_Ctxt06 through templates, so, users
don't have to code this class and for reasons I still don't get I am not able
to get this right
~
Say, a user goes:
// __
class Ho3K{
private String aS;
Ho3K(){}
public void setCtxt(String aS){ this.aS = aS; }
public String toString(){ return(" aS: |" + aS + "|"); }
}
~
...
Ho3K Ho3 = new Ho3K();
aSAr = new String[]{"ho, ho, ho!"};
DTO_T_Ctxt06<Ho3K> Ho3Ctxt = new DTO_T_Ctxt06<Ho3K>();
Ho3Ctxt.verifyCtxt(aSAr, Ho3.getClass());
System.err.println("// __ Ho3.getCtxtDTO() : |" + Ho3.getCtxtDTO() + "|");
~
How do you do such a thing?
~
lbrtchx