cannot find symbol?

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
~
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
 
M

markspace

class Ho3K{
private String aS;
Ho3K(){}
public void setCtxt(String aS){ this.aS = aS; }
public String toString(){ return(" aS: |" + aS + "|"); }
System.err.println("// __ Ho3.getCtxtDTO() : |" + Ho3.getCtxtDTO() + "|");
How do you do such a thing?

What is "such a thing?" What are you even *trying* to do? You can't
call "getCtxtDTO" on an object that only defines the methods "setCtxt"
and "toString".
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Members online

Forum statistics

Threads
473,755
Messages
2,569,536
Members
45,020
Latest member
GenesisGai

Latest Threads

Top