Difference between revisions of "Teams Winter 2011/team1/RCP/Create RPC Application"

From CDOT Wiki
Jump to: navigation, search
(Create a RCP Application)
 
(65 intermediate revisions by 2 users not shown)
Line 1: Line 1:
=== 1. Create project and data model ===
+
=== Create a RCP Application ===
 +
'''This tutorial uses the [http://www.vogella.de/articles/EclipseJFaceTable/article.html#jfaceviewers  Jface Tutorial] as reference.''' <br/>
 +
In this tutorial we are going to demonstrate how to build a simple RCP application to maintain student's information. We keep the data in a List object and will not preserve data. <br/>
  
=== 2. Show Data in Application ===
+
To begin with, we create a simple RCP from the "Hello World" RCP template. The will add our Model classes. Eventually we use perspective, view, Jface viewe and Commands, to display, edit, Add and Delete students' records.<br/>
2.1 Columns data in a JFace table can be hold in <code>ModelProvider</code> and it is defined via instances of <code>TableViewerColumn</code> object:<br/>
+
==== Start The Application ====
<code>viewer.setInput(ModelProvider.INSTANCE.getStudents());</code><br/>
+
Create a new plug-in project from File menu (File>New>Project>Plug-in Development> Plug-in project).<br/>
and
+
[[Image: createRCPApp1.jpg | 400px]]<br/>
<code>TableViewerColumn col = createTableViewerColumn(titles[0], bounds[0], 0);</code>
+
<br/>
2.2 Add the following lines to <code>StudentsView.java</code> class:<br/>
+
Name it: "cs.ecl.rcp.SimpleRCP"<br/>
Private variable: <br/>
+
[[Image: createRCPApp2.jpg | 400px]]<br/>
<code>private TableViewer viewer;</code><br/>
+
<br/>
Change the <code>createColumns()method:<br/>
+
Select "Yes" in responce to the question:" Would you like to create a rich client application?"<br/>
<pre>
+
[[Image: createRCPApp3.jpg | 400px]]<br/>
  String[] titles = { "Id", "First name", "Last name", "Program" };
+
<br/>
  int[] bounds = { 100, 100, 100, 100 };
+
Select the "Hello RCP" in the Templates screen.<br/>
  // First column is for the student id
+
[[Image: createRCPApp4.jpg | 400px]]<br/>
  TableViewerColumn col = createTableViewerColumn(titles[0], bounds[0], 0);
+
<br/>
  col.setLabelProvider(new ColumnLabelProvider() {
+
Un-check "Add branding".<br/>
      @Override
+
[[Image: createRCPApp5.jpg | 400px]]<br/>
      public String getText(Object element) {
+
<br/>
        Student s = (Student) element;
+
The "RCP" project is created with some classes already in it. We will modify this project to create our RCP application for the purpose if this tutorial.<br/>
        return s.getId();
+
[[Image: createRCPApp6.jpg | 700px]]<br/>
      }
+
<br/>
    });
+
In the "ApplicationWorkbenchWindowAdvisor" class, modify the preWindoOpen() method to set the title of the window ar "Simple RCP Application".<br/>
</pre><br/>
+
<code>ApplicationWorkbenchWindowAdvisor.java </code> to <code> true</code>
Add the same functionality for other three columns
+
<source lang=java>
2.3 Run your application:<br/>
 
[[Image: Create1.png | 400px]]<br/>
 
  
=== 3. Add Edit Cell Data Option ===
+
public void preWindowOpen() {
3.1 To make the column editable you need to define an object of type <code>EditingSupport/<code> on your TableColumnViewer.
+
        IWorkbenchWindowConfigurer configurer = getWindowConfigurer();
3.2 Create new class for each column that extends <code>EditingSupport</code> class:
+
        configurer.setInitialSize(new Point(400, 300));
<pre>
+
        configurer.setShowCoolBar(false);
  package cs.ecl.rcp.simplercp.edit;
+
        configurer.setShowStatusLine(false);
 +
        configurer.setTitle("Simple RCP Application"); //$NON-NLS-1$
 +
        configurer.setShowStatusLine(true);
 +
        configurer.setShowPerspectiveBar(true);
 +
    }
 +
</source>
  
  import org.eclipse.jface.viewers.CellEditor;
+
==== Run The Application ====
  import org.eclipse.jface.viewers.EditingSupport;
+
To run the application, right click on the project and select :Run As> Eclipse Application. Alternatively, you can click on the "Run an Eclipse Application" In the "Testing section of the project Overview window.<br/>
  import org.eclipse.jface.viewers.TableViewer;
+
[[Image: RCPRun1.jpg | 700px]]<br/>
  import org.eclipse.jface.viewers.TextCellEditor;
+
<br/>
 
+
At this point, the application starts and looks like this:<br/>
  import cs.ecl.rcp.simplercp.model.Student;
+
[[Image: RCPRun2.jpg | 350px]]<br/>
 +
<br/>
 +
'''Run Configuration'''<br/>
 +
You can also set the run configuration if required, for example if there is a separate project for a view and you want to add that view to the perspective of the current project you need to make sure that both projects are running, so you need to set that in the run configuration, and you can reach it by right clicking on the project in Project explorer view and select Run As> Run configuration, and double clicking on the '''Eclipse Application''' to create a new Run configuration for the application. However, for this project we do not need any new run configuration. <br/>
  
  public class IdEditingSupport extends EditingSupport {
+
=== Add Model ===
private final TableViewer viewer;
+
In order to have a data model for Student, we need to create a "Student Class" which keeps an student's data and "ModelProvider" Class that creates and keeps a list of Student class objects.<br/>
 +
==== Create Model Package ====
 +
Create a package named "cs.ecl.rcp.simplercp.model" in the src directory of your project.<br/>
 +
==== Add Model Class(s) ====
 +
Add a class named "Student" in the above package.
 +
Add the student related fields and make sure that the class uses "PropertyChangeSupport" and "PropertyChangeListener" when setting the properties. For this purpose we need to have an instance of the "PropertyChangeSupport" class to be build by passing the Student object(this) to it, and implement the metods:"addPropertyChangeListener" and "removePropertyChangeListener". The following code demonstrates how to create the Student Model and how to add Property Change Support to the class.
  
public IdEditingSupport(TableViewer viewer) {
+
<code>Student.java </code>
super(viewer);
 
this.viewer = viewer;
 
}
 
  
@Override
+
<source lang=java>
protected CellEditor getCellEditor(Object element) {
 
return new TextCellEditor(viewer.getTable());
 
}
 
  
@Override
+
package cs.ecl.rcp.simplercp.model;
protected boolean canEdit(Object element) {
 
return true;
 
}
 
  
@Override
+
import java.beans.PropertyChangeListener;
protected Object getValue(Object element) {
+
import java.beans.PropertyChangeSupport;
return ((Student) element).getId();
 
}
 
  
@Override
+
public class Student {
protected void setValue(Object element, Object value) {
+
    private String id;
((Student) element).setId(String.valueOf(value));
+
    private String firstName;
viewer.refresh();
+
    private String lastName;
}
+
    private String program; 
 +
 
 +
    private PropertyChangeSupport propertyChangeSupport = new PropertyChangeSupport(this);
 +
 
 +
    public Student(){
 +
    }
 +
 
 +
    public Student(String id, String firstName, String lastName, String program){
 +
        super();
 +
        this.id= id;
 +
        this.firstName= firstName;
 +
        this.lastName= lastName;
 +
        this.program= program;
 +
    }
 +
 
 +
 
 +
    public void addPropertyChangeListener(String propertyName,PropertyChangeListener listener) {
 +
        propertyChangeSupport.addPropertyChangeListener(propertyName, listener);
 +
    }
 +
 
 +
    public void removePropertyChangeListener(PropertyChangeListener listener) {
 +
        propertyChangeSupport.removePropertyChangeListener(listener);
 +
    }
 +
 
 +
    public String getId() {
 +
        return id;
 +
    }
 +
 
 +
    public String getFirstName() {
 +
        return firstName;
 +
    }
 +
 
 +
    public String getLastName() {
 +
        return lastName;
 +
    }
 +
 
 +
    public String getProgram() {
 +
        return program;
 +
    }
 +
 
 +
 
 +
 
 +
    public void setId(String id) {
 +
        propertyChangeSupport.firePropertyChange("id", this.id,
 +
                this.id = id);
 +
    }
 +
 
 +
    public void setFirstName(String firstName) {
 +
        propertyChangeSupport.firePropertyChange("firstName", this.firstName,
 +
                this.firstName = firstName);
 +
    }
 +
 
 +
    public void setLastName(String lastName) {
 +
        propertyChangeSupport.firePropertyChange("lastName", this.lastName,
 +
                this.lastName = lastName);
 +
    }
 +
 
 +
    public void setProgram(String program) {
 +
        propertyChangeSupport.firePropertyChange("program", this.program,
 +
                this.program = program);
 +
    }
 +
    public String toString() {
 +
        return id +" "+firstName + " " + lastName + " "+ program ;
 +
    }
 
}
 
}
</pre><br/>
+
 
3.3 Assign <code>EditorSupport</code> objects to your <code>TableColumnViewers </code>in your <code>StudentView</code> class.<br/>
+
 
Add the following line at the end of the <code>LabelProvider</code> is set:<br/>
 
<code>col.setEditingSupport(new IdEditingSupport(viewer));</code><br/>
 
3.4 Run your application. You should now be able to modify the content of the table:<br/>
 
[[Image: Create2.png | 400px]]<br/>
 
  
=== 4. Add Sorting Option ===
+
</source>
4.1 Create a new Class <code>StudentViewerComparator.java</code> put it in package <code>sorter</code>:<br/>
 
<pre>
 
  package cs.ecl.rcp.simplercp.sorter;
 
  
  import org.eclipse.jface.viewers.Viewer;
+
==== Add Model Provider ====
  import org.eclipse.jface.viewers.ViewerComparator;
+
"ModelProvider" class creates and maintains an ArrayList of Student objects and helps us find an student by it's id from the list of students.<br/>
 +
<code>ModelProvider.java </code>
  
  import cs.ecl.rcp.simplercp.model.*;
+
<source lang=java>
 +
package cs.ecl.rcp.simplercp.model;
  
  public class StudentViewerComparator extends ViewerComparator {
+
import java.util.ArrayList;
      private int propertyIndex;
+
import java.util.List;
      private static final int DESCENDING = 1;
 
      private int direction = DESCENDING;
 
  
      public StudentViewerComparator() {
+
public enum ModelProvider {
        this.propertyIndex = 0;
+
    INSTANCE;
        direction = DESCENDING;
 
      }
 
  
      public void setColumn(int column) {
+
    private List<Student> students;
         if (column == this.propertyIndex) {
+
 
            // Same column as last sort; toggle the direction
+
    private ModelProvider() {
            direction = 1 - direction;
+
         students = new ArrayList<Student>();
         } else {
+
        // Data could be retrieved here from database
            // New column; do an ascending sort
+
        students.add(new Student("01234567","Ladan", "Zahiroleslam", "CPA"));
             this.propertyIndex = column;
+
        students.add(new Student("09876543", "Anastasia", "Semionova", "CPA"));
             direction = DESCENDING;
+
        students.add(new Student("01122334", "Minoo", "Ziaei", "CPA"));
 +
         students.add(new Student("02233445", "Sergiu", "Ecob", "CPA"));
 +
    }
 +
 
 +
    public Student getPersonById(String id) {
 +
        for (Student student : students) {
 +
             if (student.getId() == id) {
 +
                return student;
 +
             }
 
         }
 
         }
      }
+
        return null;
 +
    }
  
      @Override
+
    public List<Student> getStudents() {
      public int compare(Viewer viewer, Object e1, Object e2) {
+
         return students;
         Student s1 = (Student) e1;
+
    }
        Student s2 = (Student) e2;
+
 
        int rc = 0;
+
}
        switch (propertyIndex) {
+
 
        case 0:
+
</source>
            rc = s1.getId().compareTo(s2.getId());
+
<br/>
            break;          
+
[[Teams_Winter_2011/team1| Index Page]]  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; [[Teams_Winter_2011/team1/RCP/Define_and_use_commands| Next>>]]
        case 1:
 
            rc = s1.getFirstName().compareTo(s2.getFirstName());
 
            break;
 
        case 2:
 
            rc = s1.getLastName().compareTo(s2.getLastName());
 
            break;
 
        case 3:
 
            rc = s1.getProgram().compareTo(s2.getProgram());
 
            break;      
 
        default:
 
            rc = 0;
 
        }
 
        // If descending order, flip the direction
 
        if (direction == DESCENDING) {
 
            rc = -rc;
 
        }
 
        return rc;
 
    }
 
}
 
</pre><br/>
 
4.2
 

Latest revision as of 13:55, 9 March 2011

Create a RCP Application

This tutorial uses the Jface Tutorial as reference.
In this tutorial we are going to demonstrate how to build a simple RCP application to maintain student's information. We keep the data in a List object and will not preserve data.

To begin with, we create a simple RCP from the "Hello World" RCP template. The will add our Model classes. Eventually we use perspective, view, Jface viewe and Commands, to display, edit, Add and Delete students' records.

Start The Application

Create a new plug-in project from File menu (File>New>Project>Plug-in Development> Plug-in project).
CreateRCPApp1.jpg

Name it: "cs.ecl.rcp.SimpleRCP"
CreateRCPApp2.jpg

Select "Yes" in responce to the question:" Would you like to create a rich client application?"
CreateRCPApp3.jpg

Select the "Hello RCP" in the Templates screen.
CreateRCPApp4.jpg

Un-check "Add branding".
CreateRCPApp5.jpg

The "RCP" project is created with some classes already in it. We will modify this project to create our RCP application for the purpose if this tutorial.
CreateRCPApp6.jpg

In the "ApplicationWorkbenchWindowAdvisor" class, modify the preWindoOpen() method to set the title of the window ar "Simple RCP Application".
ApplicationWorkbenchWindowAdvisor.java to true

public void preWindowOpen() {
        IWorkbenchWindowConfigurer configurer = getWindowConfigurer();
        configurer.setInitialSize(new Point(400, 300));
        configurer.setShowCoolBar(false);
        configurer.setShowStatusLine(false);
        configurer.setTitle("Simple RCP Application"); //$NON-NLS-1$
        configurer.setShowStatusLine(true);
        configurer.setShowPerspectiveBar(true);
    }

Run The Application

To run the application, right click on the project and select :Run As> Eclipse Application. Alternatively, you can click on the "Run an Eclipse Application" In the "Testing section of the project Overview window.
RCPRun1.jpg

At this point, the application starts and looks like this:
RCPRun2.jpg

Run Configuration
You can also set the run configuration if required, for example if there is a separate project for a view and you want to add that view to the perspective of the current project you need to make sure that both projects are running, so you need to set that in the run configuration, and you can reach it by right clicking on the project in Project explorer view and select Run As> Run configuration, and double clicking on the Eclipse Application to create a new Run configuration for the application. However, for this project we do not need any new run configuration.

Add Model

In order to have a data model for Student, we need to create a "Student Class" which keeps an student's data and "ModelProvider" Class that creates and keeps a list of Student class objects.

Create Model Package

Create a package named "cs.ecl.rcp.simplercp.model" in the src directory of your project.

Add Model Class(s)

Add a class named "Student" in the above package. Add the student related fields and make sure that the class uses "PropertyChangeSupport" and "PropertyChangeListener" when setting the properties. For this purpose we need to have an instance of the "PropertyChangeSupport" class to be build by passing the Student object(this) to it, and implement the metods:"addPropertyChangeListener" and "removePropertyChangeListener". The following code demonstrates how to create the Student Model and how to add Property Change Support to the class.

Student.java

package cs.ecl.rcp.simplercp.model;

import java.beans.PropertyChangeListener;
import java.beans.PropertyChangeSupport;

public class Student {
    private String id;
    private String firstName;
    private String lastName;
    private String program;   
   
    private PropertyChangeSupport propertyChangeSupport = new PropertyChangeSupport(this);
   
    public Student(){
    }
   
    public Student(String id, String firstName, String lastName, String program){
        super();
        this.id= id;
        this.firstName= firstName;
        this.lastName= lastName;
        this.program= program;
    }
   
   
    public void addPropertyChangeListener(String propertyName,PropertyChangeListener listener) {
        propertyChangeSupport.addPropertyChangeListener(propertyName, listener);
    }
   
    public void removePropertyChangeListener(PropertyChangeListener listener) {
        propertyChangeSupport.removePropertyChangeListener(listener);
    }

    public String getId() {
        return id;
    }

    public String getFirstName() {
        return firstName;
    }

    public String getLastName() {
        return lastName;
    }

    public String getProgram() {
        return program;
    }

   
   
    public void setId(String id) {
        propertyChangeSupport.firePropertyChange("id", this.id,
                this.id = id);
    }
   
    public void setFirstName(String firstName) {
        propertyChangeSupport.firePropertyChange("firstName", this.firstName,
                this.firstName = firstName);
    }
   
    public void setLastName(String lastName) {
        propertyChangeSupport.firePropertyChange("lastName", this.lastName,
                this.lastName = lastName);
    }
   
    public void setProgram(String program) {
        propertyChangeSupport.firePropertyChange("program", this.program,
                this.program = program);
    }
    public String toString() {
        return id +" "+firstName + " " + lastName + " "+ program ;
    }
}

Add Model Provider

"ModelProvider" class creates and maintains an ArrayList of Student objects and helps us find an student by it's id from the list of students.
ModelProvider.java

package cs.ecl.rcp.simplercp.model;

import java.util.ArrayList;
import java.util.List;

public enum ModelProvider {
    INSTANCE;

    private List<Student> students;
   
    private ModelProvider() {
        students = new ArrayList<Student>();
        // Data could be retrieved here from database
        students.add(new Student("01234567","Ladan", "Zahiroleslam", "CPA"));
        students.add(new Student("09876543", "Anastasia", "Semionova", "CPA"));
        students.add(new Student("01122334", "Minoo", "Ziaei", "CPA"));
        students.add(new Student("02233445", "Sergiu", "Ecob", "CPA"));
    }

    public Student getPersonById(String id) {
        for (Student student : students) {
            if (student.getId() == id) {
                return student;
            }
        }
        return null;
    }

    public List<Student> getStudents() {
        return students;
    }

}


Index Page            Next>>