• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

ABOUT CLIENT GUI Design on FBN

 
Greenhorn
Posts: 4
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Dear all,
1)
Did you put "add" and "delete" at your interface?
According to instruction , i only implement
search and bookflight two functions, but it said
Data client need implements all public method
in Data class.
GUI realize it's funcation through Data client,
so do you think i need put "add" and "delete"
2) instruction said "To connect with your server,
your should create a client program. This implementation
should include a class that implements the same public methods as suncertify.db.Data class,"
according to this.should i implements Data class
's modify, close, getRecord(),getRecordcount..all
public methods?
but i didnot see any sense of it
.
thanks for your attention
please give me some hints
regards
 
Ranch Hand
Posts: 68
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I don't think U should as the requirement hasn't mentioned!
But U can add them in your UI, but U should disable them and mention them in your Doc the reason for adding them.
eg. for future enhancement
 
Greenhorn
Posts: 27
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
2) instruction said "To connect with your server,
your should create a client program. This implementation
should include a class that implements the same public methods as suncertify.db.Data class,"
according to this.should i implements Data class
's modify, close, getRecord(),getRecordcount..all
public methods?
but i didnot see any sense of it,

who can answer this question?
 
Ranch Hand
Posts: 109
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Originally posted by Alex Zhang:
I don't think U should as the requirement hasn't mentioned!
But U can add them in your UI, but U should disable them and mention them in your Doc the reason for adding them.
eg. for future enhancement


I would NOT put widgets for the add/delete functionality for the UI. If they are permanently disabled, you will lose points for violating standard HCI princples. What I did was implement add and delete, and verify that they worked correctly using Unit Tests, but never actually call them from the program itself nor put any UI for them in.
 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
reply
    Bookmark Topic Watch Topic
  • New Topic