• 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
  • Liutauras Vilda
  • Ron McLeod
  • Jeanne Boyarsky
  • Paul Clapham
Sheriffs:
  • Junilu Lacar
  • Tim Cooke
Saloon Keepers:
  • Carey Brown
  • Stephan van Hulst
  • Tim Holloway
  • Peter Rooke
  • Himai Minh
Bartenders:
  • Piet Souris
  • Mikalai Zaikin

OOP Modeling - Separate GUI from implementaion-How to refer to class where have more than one method

 
Ranch Hand
Posts: 66
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi!

I have a problem with class modeling (again ) I have a class where GUI is implemented. On encryption button I want to do playfair encryption and for example Vigenere encryption. I have a separate Playfair class (contains from a few methods), but how do I implement it on the button action event ?
 
Author
Posts: 12617
IntelliJ IDE Ruby
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Could you edit your subject line to more accurately represent your question? Explaining your question or remark briefly on the subject line allows us to know what we are getting into, and if we will be able to help.

You can edit your post by using the button.
 
Nicol Green
Ranch Hand
Posts: 66
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Sorry..
I hope that now title is better named.
Thanks for a tip.
 
Marshal
Posts: 27675
89
Eclipse IDE Firefox Browser MySQL Database
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
You put the code into the actionPerformed(ActionEvent) method of your listener. I'm not sure why it makes a difference how many methods some class makes, so maybe you could clarify your question, if that wasn't the answer to it.
 
Nicol Green
Ranch Hand
Posts: 66
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I have class with GUI implemented and there I have a 3 text area (for plainText, for keyword and for cipherText)encryption button.
I would like to implement Playfair and Vigenere cipher on on click event.
But Playfair and Vigenere are separated classes, with a few methods.
How do I do that connection between them ? Classes follows:





 
Don't get me started about those stupid light bulbs.
reply
    Bookmark Topic Watch Topic
  • New Topic