• 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
  • Tim Cooke
  • paul wheaton
  • Ron McLeod
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
Bartenders:

suggestion required on building an java based editor???

 
Ranch Hand
Posts: 57
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I want to make a editor sort of thing (like edit plus or jcreator)for java. Where should i start from?.What are the topics needed to be covered.What should i study.What do I need to know?Really i don't have any Idea .But I am really interested?
Some body please help me out. Any , any suggestion will be highly appriciated. Really any advice.
 
author and iconoclast
Posts: 24207
46
Mac OS X Eclipse IDE Chrome
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Seriously: I'd start by looking at freshmeat.net and sourceforge.org. Search for "java editor". Look how many there are. Pick a few, download them, look at the code until the urge to do it goes away. Don't waste your time reinventing the wheel.

If you have particular features you want to implement in an editor, implement them as plugins to an existing editor or IDE that supports plugins. I'd suggest Eclipse (www.eclipse.org) but there are plenty of others.
 
subho saha
Ranch Hand
Posts: 57
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
this is just an hobby project.So i donot want to go through high funda editors at the beganing.If some body can show me the starting point, It will be much helpful.waiting in anticipation
 
Sheriff
Posts: 28435
103
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
Start with requirements definition. So far you want to write "an editor sort of thing". You need to add some more detail to that list of requirements. Such as what it should do. Once you have a couple of pages of requirements written down, you should have a better idea of what tasks you are going to have to do.
 
Ranch Hand
Posts: 37
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Look at the demo/jfc directory in your JDK installation. There is one demo project named Notepad. It is a simple Swing based text editor. You can start by playing with it.
 
subho saha
Ranch Hand
Posts: 57
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Ok lets say I want to make something like text pad which acts not only as an editor but also compiles and runs from same interface.Making an editor is Ok. But how to link that program,compile it,show errors and obiously run and show runtime exceptions
[ November 28, 2005: Message edited by: subho saha ]
 
Too many men are afraid of being fools - Henry Ford. Foolish tiny ad:
Clean our rivers and oceans from home
https://www.kickstarter.com/projects/paulwheaton/willow-feeders
reply
    Bookmark Topic Watch Topic
  • New Topic