Click here to Skip to main content
15,881,248 members
Home / Discussions / Java
   

Java

 
AnswerRe: Hi all can anyone solve this for me plz in java Pin
Sascha Lefèvre21-Oct-17 4:40
professionalSascha Lefèvre21-Oct-17 4:40 
AnswerRe: Hi all can anyone solve this for me plz in java Pin
jschell23-Oct-17 7:36
jschell23-Oct-17 7:36 
QuestionCalculator App for order of operations (Android Studio) Pin
Member 1347677620-Oct-17 17:40
Member 1347677620-Oct-17 17:40 
AnswerRe: Calculator App for order of operations (Android Studio) Pin
Richard MacCutchan20-Oct-17 21:54
mveRichard MacCutchan20-Oct-17 21:54 
AnswerRe: Calculator App for order of operations (Android Studio) Pin
jschell23-Oct-17 7:58
jschell23-Oct-17 7:58 
QuestionTrying to develop an app at school using java-mobile app Pin
Member 1347677620-Oct-17 17:03
Member 1347677620-Oct-17 17:03 
QuestionRe: Trying to develop an app at school using java-mobile app Pin
Richard MacCutchan20-Oct-17 21:50
mveRichard MacCutchan20-Oct-17 21:50 
QuestionAnalyze the structure of a class (with package dependence) Pin
Hager.Harald14-Oct-17 12:25
professionalHager.Harald14-Oct-17 12:25 
Hi, I'm searching for an application (or plugin at Eclipse / Netbeans) where I can analyze the structure of a class. It is important that I can see the package dependencies. Plugins I tried just give me an overview 1:1 or 1:n beetween the classes, but no information about the package dependence at a class.

A sample:

Class A
{
   JButton btn;
   
   void test() 
   {
      btn = new JButton(myicon, „hello world");
      String text = btn.getText();
      btn.setText();
      ArrayList<String> obj = new ArrayList<String>();
      obj.add(„first");
      obj.add(text);
   }

   void myfunc() 
   {
      System.out.println(„test");
   }
}


What I need here:

All foreign classes, functions, or constants (means all that are not defined at A) which are used through class A, are shown in a list.
myfunc() is not necessaray to show because it is definied at A - but it is doesn't matter if it is shown - that's okay.
It is not necessary that this tool (or plugin) shows it over a GUI.

Class ; Function ;
javax.swing.JButton ; init<icon, string=""> // Constructor
javax.swing.JButton ; getText() ;
javax.swing.JButton ; setText(String) ;
java.util.ArrayList ; init<>
java.util.ArrayList ; add(Object) ;
System.out ; println(String);

NOTE: I need no reverse engineering of a JAR file - I like to analyze my own java source files.

Thank you in advance!
AnswerRe: Analyze the structure of a class (with package dependence) Pin
Richard MacCutchan14-Oct-17 20:55
mveRichard MacCutchan14-Oct-17 20:55 
AnswerRe: Analyze the structure of a class (with package dependence) Pin
jschell15-Oct-17 8:07
jschell15-Oct-17 8:07 
GeneralRe: Analyze the structure of a class (with package dependence) Pin
Hager.Harald15-Oct-17 21:18
professionalHager.Harald15-Oct-17 21:18 
QuestionJava compile time Errors Pin
Pruthivi_Dev7-Oct-17 3:34
Pruthivi_Dev7-Oct-17 3:34 
AnswerRe: Java compile time Errors Pin
Richard Deeming9-Oct-17 8:33
mveRichard Deeming9-Oct-17 8:33 
AnswerRe: Java compile time Errors Pin
Manish K. Agarwal12-Oct-17 4:37
Manish K. Agarwal12-Oct-17 4:37 
QuestionJava1 Pin
zakarie mukhtar abdi6-Oct-17 9:42
zakarie mukhtar abdi6-Oct-17 9:42 
AnswerRe: Java1 Pin
Richard MacCutchan6-Oct-17 22:12
mveRichard MacCutchan6-Oct-17 22:12 
QuestionBasic Java Help Pin
Gametron134-Oct-17 15:59
Gametron134-Oct-17 15:59 
AnswerRe: Basic Java Help Pin
Richard MacCutchan4-Oct-17 22:40
mveRichard MacCutchan4-Oct-17 22:40 
AnswerRe: Basic Java Help Pin
jschell13-Oct-17 6:05
jschell13-Oct-17 6:05 
QuestionHashMap Internal working. and which scenario use in project in java. Pin
Member 1343768729-Sep-17 10:53
Member 1343768729-Sep-17 10:53 
AnswerRe: HashMap Internal working. and which scenario use in project in java. Pin
jschell2-Oct-17 11:39
jschell2-Oct-17 11:39 
AnswerRe: HashMap Internal working. and which scenario use in project in java. Pin
Richard MacCutchan2-Oct-17 21:49
mveRichard MacCutchan2-Oct-17 21:49 
QuestionHow to mark the user inputted value by some shapes in Java? Pin
Member 1343755829-Sep-17 9:05
Member 1343755829-Sep-17 9:05 
AnswerRe: How to mark the user inputted value by some shapes in Java? Pin
jschell2-Oct-17 11:40
jschell2-Oct-17 11:40 
Questionjava Pin
Member 1343015225-Sep-17 22:16
Member 1343015225-Sep-17 22:16 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.