Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~918 People Reached
Favorite Forums
Favorite Tags
java x 11
Member Avatar for Chipsncoke

What is the advantage of writing the button as a seperate class. Like [CODE]private class button implements ActionListener { public void actionPerformed (ActionEvent e){ { }[/CODE] chipsncoke

Member Avatar for N[e]tt[e]
0
129
Member Avatar for Chipsncoke

I have a file I am trying to read, to get a value that i will be needing as input. [CODE]([KB_175346] of String (name "classes_file_name") (string_value "sample1.albs"))[/CODE] I need to read the value called sample1.albs into another string which i give as an input to another program. [CODE]String file = …

0
74
Member Avatar for Chipsncoke

I have an array list that stores some files. These files are shown to the user. Depending on the index chosen i will input the file to the program. There fore i write [code]//initialization List projecList = new ArrayList(//........); //body String getproject = projectList.get(index).toString(); updatepd(getproject);[/code] if i system.out.println() the getproject …

Member Avatar for Chipsncoke
0
106
Member Avatar for Chipsncoke

I am trying to construct a JTree to show the following data. The program should he able to read any data in this format. [B]ChildNode[/B]--------[B]Parent Node[/B] Employee--------Root Visitors----------Root Staff------------Employee Students--------Employee Graduates-------Students Undergrads------Students Interns----------Employee,Visitors I have this two columns of info stored in two linked list. LinkedList A and LinkedList B. …

Member Avatar for Chipsncoke
0
237
Member Avatar for Chipsncoke

I am working on a parsing a file . This is my problem. There are classes and subclasses. Classes/Subclasses are defined by attributes. The sub classes will inherit the attributes of its super class. For example: Employee(attrbts: name, salary) [INDENT]manager(attrbts: responsibilities)[/INDENT] [INDENT]clerks(attrbts: department)[/INDENT] Emp is a class with manager nd …

Member Avatar for chrisbliss18
0
372