Package org.ytreza.app.noterex.model

Examples of org.ytreza.app.noterex.model.Note


      window.setVisible(true);
    }
  }

  public void createNote() {
    WindowNote windowForm = new WindowNote(window, indexer, new Note(), factory);
    windowForm.setVisible(true);
  }
View Full Code Here


    this.window = window;
    this.indexer = indexer;
    if (note != null) {
      this.note = note;
    } else {
      this.note = new Note();
    }
  }
View Full Code Here

TOP

Related Classes of org.ytreza.app.noterex.model.Note

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.