need help!! texteditor with Java

Joined
Nov 10, 2008
Messages
1
Reaction score
0
hello @ all,
i got a problem i need a simple texteditor create with Java

i tried this but it won't work... need some help ^^plz

Code:
package com.kymerix.renaissance.scrivener;

import javax.swing.text.DefaultEditorKit;

public class TextEditor extends DefaultEditor{
  public TextEditor() {
    super("TextEditor", new DefaultEditorKit());
  }

  /**
   * newDocument
   */
  protected void newDocument() {
  }

  /**
   * openDocument
   */
  protected void openDocument() {
  }

  /**
   * saveDocument
   *
   * @param saveAs boolean
   * @return boolean
   */
  protected boolean saveDocument(boolean saveAs) {
    return false;
  }
}
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,773
Messages
2,569,594
Members
45,121
Latest member
LowellMcGu
Top