How Software Gets Done  


(No Login on Secured Page)

Custom Software Buyers
Request new bids
Search Coders
My Account
 
My Buyer 'To Do' List
 
My bid requests
  My escrow account
 
My General Info
 
Help for Buyers
Articles for Buyers
Latest News
 

Custom Software Coders

Newest open work
Browse all work
Search all work
My Account
 
My Coder 'To Do' List
 
My bids
 
My General Info
  My credit account
 
Help for Coders
Articles for Coders
Latest News
 

Affiliates

My account
 
My pipeline
 
My credit account
 
Help for Affiliates
Latest News
 
Newest Open Bid Requests.
cookies
By Banner on Jan 30
Max Bid: Open to fair suggestions


Domain Specific WebSearch Engine
By StarSE on Jan 30
Max Bid: $250


simple tar
By CheatMode on Jan 30
Max Bid: $30

(Screen Shot)

Custom IE Toolbar
By ocibr on Jan 30
Max Bid: $20


web site logo
By Melni on Jan 30
Max Bid: $30

(Screen Shot)

DIAL TELEPHONE, RECORD RESPONSE
By C. Joseph Howard on Jan 30
Max Bid: Open to fair suggestions


Click here to put this ticker on your own site

Open Work Categories.
Database 
(136 open)
   Access 
(58 open)
   MySQL 
(67 open)
   Oracle 
(6 open)
   SQL Server 
(39 open)
   Other DB 
(17 open)
Documentation / Tech Writing 
(24 open)
Game Development 
(17 open)
Graphics / Art / Music 
(59 open)
   Graphics 
(55 open)
     3d Animation 
(16 open)
   Art (Misc.) 
(22 open)
   Music 
(9 open)
   3d Modeling 
(14 open)
Language Specific 
(105 open)
   ASP 
(59 open)
   C# 
(35 open)
   C++ / C 
(105 open)
   Cold Fusion 
(2 open)
   Delphi 
(27 open)
   Java 
(46 open)
   Perl 
(30 open)
   PHP 
(80 open)
   XML/XSL 
(24 open)
   Visual Basic 
(164 open)
   Visual Basic .Net 
(57 open)
   Other 
(46 open)
Misc 
(39 open)
   CAD 
(9 open)
MultiMedia 
(33 open)
Network 
(33 open)
   Network Design 
(9 open)
   Network Implementation 
(14 open)
Platforms 
(65 open)
   Windows 
(137 open)
     MS Exchange 
(5 open)
     MS Office 
(10 open)
     Other 
(10 open)
   Internet Browser 
(60 open)
   Linux 
(42 open)
   UNIX 
(26 open)
   Hand Held/PDA Programming 
(13 open)
Requirements 
(11 open)
Security 
(36 open)
Testing / Quality Assurance 
(13 open)
Web 
(128 open)
   Page Design 
(56 open)
   Flash 
(33 open)
   Web Services 
(57 open)
   Web (Other) 
(59 open)
Training 
(5 open)
   Computer Based 
(11 open)
 
Other
 
Other Sites

Download the free Rent A Coder IE toolbar!
 
Show Bid Request

Sorting Objects
Bid Request Id: 31597
Bookmark in my 'To Do' list
Posted by: MongloidOO (4 ratings)
(Software buyer rating 9.5)
Posted: Oct 18, 2002
6:47:50 PM EDT
Bidding Closes: Oct 27, 2002 EDT
Viewed (by coders): 78 times
Deadline: 10/27/2002
TIME EXPIRED
Phase:
100% of work was accepted by buyer. Coder account has been credited.
Max Accepted Bid: Bidding is closed
Project Type: Personal Project / Homework Help
Bidding Type: Open Auction
Categories: Java, Requirements, Documentation / Tech Writing, Misc
Enter chat room for this bid request
(0 active users at Jan 30, 2003 3:31:28 PM EDT)

Description:
reading data from text file

sorting objects instead of numbers

more pull down menus

inheritance

action handling

exceptions

full javadocs

and a few modifications to the code provided.


Deliverables:
Document the following:

Comment all the methods in all classes, have them package or public accessible.

Comment any new fields, use protected access.

Add one sentence description for all inner classes if you have any.

Generate Javadocs for all non-private methods and fields.

Give your design in a Javadoc that describes all public and protected interfaces. Make all the methods you write protected and your fields that your children do not need access to private. This way you can generate a Javadocs which describes all you methods and only a subset of the fields.

Document your new classes (action handlers, dialog boxes, etc).

Use clear variable, method and class names.
Do not use magic numbers.
Comment all code blocks.
Beautify your code. Indent correctly, do not exceed 90 characters per line, have spaces around arithmetic and logic operators, etc.



Modify Look and Feel

1. Change title on JFrame to "Object Sorting by Bob" . Remove button panel.

2. Add pull down menus to the application. Use the notepad approach. The root menu should have:

File, Look and Feel,Sort, Stop, Algorithm

File - List of four data files.
Look and Feel -
1. Set speed. Have the three speeds as a submenu.
2.Select which fields to graph (X, Y, Z) using check boxes. The user can graph one, two or all the attributes.

Sort - select the attribute on which you sort (what the compareTo() will compare) and start sorting
1.X
2.Y
3.Z

4. Stop - stop sorting

5. Algorithm - select sort algorithm
1. List sort algorithms

Note: X, Y, and Z are attributes of an object of the SortData class. I could have just as easily called the attributes height, weight, and age and the class EmployeeRecord

3. Associate an action with each menu item. Each action shall print an identifying message to System.out. (The following examples include code to construct a toolbar. Because of this the constructor includes an ImageIcon. You can leave that formal parameter out.)

Use an abstract action created with an inner class as below

//first button and menu item
Action leftAction = new AbstractAction("Go left",
new ImageIcon(getURL("./images/left.gif"))) {
public void actionPerformed(ActionEvent e) {
///////////////////////////////////////
// place your code here to handle the action
//////////////////////////////////////
}
};
// construct button for toolbar
button = toolBar.add(leftAction);
button.setText(""); //an icon-only button
button.setToolTipText("This is the left button");
// add item to menu
menuItem = mainMenu.add(leftAction);
menuItem.setIcon(null); //arbitrarily chose not to use icon in menu



or create a class and instantiate




class FindAction
extends AbstractAction {
CustomDialog customDialog;

FindAction(ImageIconicon) {
// sets NAME field do action can be identified
super("Find", icon);
}

public void actionPerformed(ActionEvent e) {
///////////////////////////////////////
// place your code here to handle the action
//////////////////////////////////////
}
}


Action findAction = new FindAction(
getURL("./images/find.gif"));
// construct button for toolbar
button = toolBar.add(findAction );
button.setText("Find");
button.setToolTipText("Find me some text");

// add item to menu
menuItem = mainMenu.add(findAction );



1 - Implement a status bar using the example at The Swing Connection (http://java.sun.com/products/jfc/tsc/articles/actions/) to display the current actions.
2 - Implement a file chooser as in Notepad or in How to Use File Choosers (http://java.sun.com/docs/books/tutorial/uiswing/components/filechooser.html)
3
- Implement a toolbar.

The Enhancement Specs are included in the zip file in the file Enhancements.

Platform:
Java


Must be 100% finished and received by buyer on:

Oct 27, 2002 EDT
Deadline legal notes: All times are expressed in the time zone of the site EDT (UT - 5). If the buyer omitted a time, then the deadline is 11:59:59 PM EDT on the indicated date.

Additional Files:
This bid request includes IMPORTANT additional attached files. Please download and read fully before bidding.



Remember that contacting the other party outside of the site (by email, phone, etc.) on all business projects < $500 (before the buyer's money is escrowed) is a violation of both the software buyer and seller agreements. We monitor all site activity for such violations and can instantly expel transgressers on the spot, so we thank you in advance for your cooperation. If you notice a violation, you can report it to: abuse@rentacoder.com.
 
Bidding/Comments:
All monetary amounts on the site are in United States dollars.
Rent a Coder is a closed auction, so coders can only see their own bids and comments. Buyers can view every posting made on their bid requests.

See all rejected bids (and all comments)
Name   Bid Amount 
 
Date   Coder Rating  
Kandy Computational
(12 ratings)
in Kandy, Central Province
Sri Lanka
 
$15 (USD) Oct 18, 2002
9:06:33 PM EDT
 8.75
(Superb)
   
Hi. I'd like very much to complete this project for you. Problem is, the bid request shows the bid acceptance date and project delivery date as 10/27. Since the work will take about 2 days, my bid of
$15 is only valid if you can accept it on or before 10/25.

I look forward to working with you.

-KC-
 
 
 
 
  See 6 private reply(ies)
to/from Kandy Computational.
 

This bid was accepted by the buyer!
Kandy Computational
(12 ratings)
in Kandy, Central Province
Sri Lanka
 
$2.25 (USD) Oct 29, 2002
7:22:04 AM EDT
 8.75
(Superb)
   
Posted by facilitator. After arbitration, this bid request is being closed out from the original amount of $15.00 to $2.25.
 




Quick Search
 

 Advanced Search
Newest Open Work
Latest News

 
Credentials


 

 
Rent A Coder upholds the rigorous business practices required to be both a BBB member and Square Trade vendor.
  • All customer issues addressed within 2 days
  • Openly disclosed pricing and return policies
  • Participation in mediation at buyer request
  • Superior selling track record
This site is verified through its parent company, Exhedra Solutions, Inc.
 

Rent A Coder Top Coders.


Anuj Gakhar
Rated a 9.98 on 78 jobs 
Michael Sharp
Rated a 9.98 on 149 jobs 
Simon Price
Rated a 10 on 6 jobs 
RNA
Rated a 9.91 on 28 jobs 
Buddies
Rated a 9.82 on 52 jobs 
Securenext
Rated a 9.97 on 58 jobs 
Codman
Rated a 9.96 on 106 jobs 
markesh
Rated a 10 on 17 jobs 
Andrei Remenchuk
Rated a 10 on 9 jobs 
teleCODERS
Rated a 9.93 on 59 jobs 

See all top coders...

(What makes a top coder?)

Top Exam Scorers
 
Other
Rent A Coder is PayPal verified through it's parent company, Exhedra Solutions, Inc.

Created in partnership with:

 


Affiliate Sites



Latest News | About Us | Kudos | Feedback/Contact    Affiliates | Advertise    Privacy | Legal

Copyright © 2001, Exhedra Solutions, Inc. All rights reserved.
By using this site you agree to its Terms and Conditions.
"Rent A Coder" (tm), "Safe Project Escrow" (tm) and "How Software Gets Done" (tm)
are trademarks of Exhedra Solutions, Inc.