Item Editor (In Memory)

Item Editor is a sample application of Eclipse RCP that generated by using Jalcedo Java Beans Editor Generator.

It has basic functions of CRUD (create, read, update, delete). Item Editor edits Item model that has name and price property.

This sample preserve data only in memory.

Requirements

  Eclipse 3.2 or newer

Item Editor

Item View

This view displays Items as table. You can edit Items from new/edit/delete button.

Item Detail View

When new/edit button is clicked, system opens this view.

You can edit values of properties.

Class Diagram

How to use Item Editor

Installation

Install Jalcedo/examples. See also Installation.

Run Item Editor

  1. Select Window -> Show View -> Other -> ItemView
  2. Item View is opened.

Create an Item

  1. Click new button.
  2. Input name and price.
  3. Click OK.
  4. System creates new Item, and reflesh Item table view.

Update an Item

  1. Select Item.
  2. Click edit button.
  3. Edit name and price.
  4. Click OK.
  5. System edits the Item, and reflesh Item table view.

Delete an Item

  1. Select Item.
  2. Click delete button.
  3. System deletes the Item, and reflesh Item table view.

Attachments