From: Taehoon L. <no...@gm...> - 2008-09-03 06:51:52
|
import java.io.File; import java.lang.reflect.Method; import org.apache.catalina.connector.Request; import org.apache.catalina.connector.Response; public class example { public static void main(String[] args) { try{ Class c=Class.forName("example"); Method[] m=c.getMethods(); for(Method method:m){ System.err.println(method.getReturnType()); } }catch(Exception e ){e.printStackTrace();} } public File invoke(Request a , Response b){ return null; } } |
From: John P. <jp...@go...> - 2008-09-18 03:01:16
|
Hi Taehoon, Did you look to see if there is an obvious problem in the code? Peter - should we track issues on SourceForge? (do we already to this?) John 2008/9/3 Taehoon Lee <no...@gm...>: > example is atteched. > > The result of example on JPF is as follows. > ------------------------------------- > class void > null > class java.lang.Class > class int > class boolean > class java.lang.String > class void > class void > class void > class void > class void > ------------------------------------ > > The result of example on JVM is as follows. > ------------------------------------- > void > class java.io.File > int > class java.lang.Class > void > void > void > boolean > class java.lang.String > void > void > ----------------------------------- > > -- > -- > Taehoon Lee(이태훈) > Ph.D candidate > Kyonggi University , Korea > > > ------------------------------------------------------------------------- > This SF.Net email is sponsored by the Moblin Your Move Developer's challenge > Build the coolest Linux based applications with Moblin SDK & win great > prizes > Grand prize is a trip for two to an Open Source event anywhere in the world > http://moblin-contest.org/redirect.php?banner_id=100&url=/ > _______________________________________________ > Javapathfinder-devel mailing list > Jav...@li... > https://lists.sourceforge.net/lists/listinfo/javapathfinder-devel > > |
From: Taehoon L. <no...@gm...> - 2008-09-18 03:08:06
|
It is already solved. http://javapathfinder.svn.sourceforge.net/javapathfinder/?rev=1003&view=rev 2008년 9월 18일 (목) 오후 7:01, John Penix <jp...@go...>님의 말: > Hi Taehoon, > > Did you look to see if there is an obvious problem in the code? > > Peter - should we track issues on SourceForge? (do we already to this?) > > John > > 2008/9/3 Taehoon Lee <no...@gm...>: > > example is atteched. > > > > The result of example on JPF is as follows. > > ------------------------------------- > > class void > > null > > class java.lang.Class > > class int > > class boolean > > class java.lang.String > > class void > > class void > > class void > > class void > > class void > > ------------------------------------ > > > > The result of example on JVM is as follows. > > ------------------------------------- > > void > > class java.io.File > > int > > class java.lang.Class > > void > > void > > void > > boolean > > class java.lang.String > > void > > void > > ----------------------------------- > > > > -- > > -- > > Taehoon Lee(이태훈) > > Ph.D candidate > > Kyonggi University , Korea > > > > > > ------------------------------------------------------------------------- > > This SF.Net email is sponsored by the Moblin Your Move Developer's > challenge > > Build the coolest Linux based applications with Moblin SDK & win great > > prizes > > Grand prize is a trip for two to an Open Source event anywhere in the > world > > http://moblin-contest.org/redirect.php?banner_id=100&url=/ > > _______________________________________________ > > Javapathfinder-devel mailing list > > Jav...@li... > > https://lists.sourceforge.net/lists/listinfo/javapathfinder-devel > > > > > -- -- Taehoon Lee(이태훈) Ph.D candidate Kyonggi University , Korea |
From: John P. <jp...@go...> - 2008-09-18 03:15:30
|
excellent. Peter's inbox is our issue tracker (and resolver!) jp On Thu, Sep 18, 2008 at 12:08 PM, Taehoon Lee <no...@gm...> wrote: > It is already solved. > > http://javapathfinder.svn.sourceforge.net/javapathfinder/?rev=1003&view=rev > > > 2008년 9월 18일 (목) 오후 7:01, John Penix <jp...@go...>님의 말: >> >> Hi Taehoon, >> >> Did you look to see if there is an obvious problem in the code? >> >> Peter - should we track issues on SourceForge? (do we already to this?) >> >> John >> >> 2008/9/3 Taehoon Lee <no...@gm...>: >> > example is atteched. >> > >> > The result of example on JPF is as follows. >> > ------------------------------------- >> > class void >> > null >> > class java.lang.Class >> > class int >> > class boolean >> > class java.lang.String >> > class void >> > class void >> > class void >> > class void >> > class void >> > ------------------------------------ >> > >> > The result of example on JVM is as follows. >> > ------------------------------------- >> > void >> > class java.io.File >> > int >> > class java.lang.Class >> > void >> > void >> > void >> > boolean >> > class java.lang.String >> > void >> > void >> > ----------------------------------- >> > >> > -- >> > -- >> > Taehoon Lee(이태훈) >> > Ph.D candidate >> > Kyonggi University , Korea >> > >> > >> > >> > ------------------------------------------------------------------------- >> > This SF.Net email is sponsored by the Moblin Your Move Developer's >> > challenge >> > Build the coolest Linux based applications with Moblin SDK & win great >> > prizes >> > Grand prize is a trip for two to an Open Source event anywhere in the >> > world >> > http://moblin-contest.org/redirect.php?banner_id=100&url=/ >> > _______________________________________________ >> > Javapathfinder-devel mailing list >> > Jav...@li... >> > https://lists.sourceforge.net/lists/listinfo/javapathfinder-devel >> > >> > > > > > -- > -- > Taehoon Lee(이태훈) > Ph.D candidate > Kyonggi University , Korea > > |