Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Eclipse IDE for Education

Revision as of 11:12, 11 January 2010 by Wayne.eclipse.org (Talk | contribs) (Development Environment)

The Eclipse IDE for Education is a version of Eclipse streamlined specifically for use by university and college students. The environment provides support for programming languages that are commonly used in university courses, including Java, Scheme, and Prolog (though only Java is supported for the time being).

Our initial efforts are focused on providing an environment with reduced clutter that allows students to focus on their immediate requirement of getting classroom work done. To that end, the current version provides a streamlined environment featuring stripped down versions of wizards for creating common elements. We anticipate that students will use this environment in their first months of learning and then progress to a more complete Eclipse configuration.

Our next most immediate focus is to provide support for other languages commonly used in post-secondary education such as Scheme and Prolog (Scheme support is expected soon, pending a positive outcome from our IP due diligence process). We have discussed some crazy ideas of where we might take the Eclipse IDE for Education. It is has been suggested, for example, that it might be cool to use the ECF discovery APIs to allow an instructor to make assignments available through the environment itself; students might obtain those assignments by merely being in network proximity to their instructor's computer. These discussions are occurring and will occur in our mailing list.

The Eclipse IDE for Education certainly is ripe for contributions as part of student projects, master's theses, and more (hint, hint).

Downloading and Installing

Incubation

We currently only support the Java programming language. Scheme support should (hopefully) be available shortly, followed by Prolog. Note that this project is currently in incubation.

Download the Eclipse IDE for Education on the following platforms:

To install, extract the downloaded file onto your file system. To run, click on the "eclipse" executable (eclipse.exe on Windows).

Please report any problems via Eclipse Bugzilla.

Windows users: There is a known problem with the decompression software built into Windows; if you have a problem decompressing the file, either try decompressing it into the root directory, or use alternative decompression software such as 7zip or WinZip.

Development

We are actively soliciting feedback, input, and contributions for this project. If you are interested in participating in this project, please feel free to review the open bugs and add your input; also feel free to open new bugs. You can also participate in the conversation around Eclipse IDE for Education by joining the mailing list.

We have marked several of the bugs using the 'helpwanted' and 'bugday' keywords. The semantics of 'helpwanted' are pretty obvious: these are the bugs that we want help with. Those bugs marked as 'bugday' are ones that we believe are relatively easy to fix; these bugs should take no more than a couple of hours each to address (the time that it will take to get up to speed with Eclipse plug-in development notwithstanding).

Project Call

We have setup a regular call for developers who are working on the project. The call-in information follows:

  • Thursday, 1100h ET
  • Canada: 1-877-727-8553 toll free
  • U.S.: 1-866-394-4146 toll free
  • Participant p/c 428029063

Consider this call to be our "office hours"; we can use these to discuss any issues that need to be discussed. Do feel free to present your questions on the mailing list.

Development Environment

You can set up your own environment for developing on Eclipse IDE for Education as follows:

  1. Download and install the Eclipse for RCP/Plug-in Developers
    • You'll need a Java 5 compatible runtime (JRE) installed on your workstation
    • Unzip the downloaded package to install. You can find some help in the Eclipse FAQ.
  2. Download the ide4edu.psf Team Project Set.
  3. Import the Team Project Set using the File > Import > Team Project Set menu. When you are prompted, use "anonymous" as the user id with an empty (blank) password.

Following the above set of instructions should result in a workspace containing all the source code for the project. Note that while you can read the code and make local changes, you will not be able to commit any of your changes back to the server. To do so requires "committer" access.

Background

Goals

To provide an Eclipse IDE streamlined for the needs of university students that is as small as possible; only absolutely-required components are included. This includes download size, as well as runtime footprint.

Fundamental Requirements

The Eclipse IDE for Education is a streamlined integrated development environment (IDE) which supports different languages used by first year students. The initially targeted languages are Java, Scheme and Prolog development.

Scaled down versions of Eclipse for Java development have been done in the past. One such version was produced by the GILD project. However, it is no longer supported, with its last release done on January 3, 2006, and intended for use with Eclipse version 3.1. Another version is Penumbra. It is plug-in developed at Purdue University for use in their introductory programming classes. It was intended to ease the transition to use of the full-featured functionality of Eclipse. Penumbra presents an Eclipse perspective that hides all but the basic actions of Eclipse's existing Java perspective, while packaging elements of other perspectives (e.g., the CVS perspective) into simpler actions that ease the downloading and turn-in of programming assignments, and adding new code views inspired by other environments for introductory programmers. Although neither version seems to be currently supported, they provide direction as to what a lite version of Eclipse for Java development might look like.

Only one Eclipse based Scheme development environment exists: The SchemeWay project. It provides a set of Eclipse plugins for the Scheme programming language and features a powerful, fully extensible S-expression-based editor that integrates seamlessly with any Scheme interpreter. However, this environment is not targeted at first year students. While not Eclipse based, DR Scheme provides an environment that provides an integrated programming environment designed specifically with the needs of beginners in mind.

One free Eclipse plug-in for Prolog exists created by an undergraduate student named Juliana Barby Simão. However, it was completed in 2004 and was not continued, even though it was reported that the project would continue during 2004 as a graduate project. Not Eclipse based, JLog is an implementation of a Prolog interpreter, written in Java. It includes a built-in source editor, query panels, online help, animation primitives, and a GUI debugger. It could be easily wrapped within an Eclipse UI, providing Prolog for Eclipse users.

Whether for Java, Scheme or Prolog development, the idea is to provide first year students with streamlined built-for-purpose Eclipse-based IDEs. By doing so, the belief is that as students become more experience with the lite versions and the languages, they can and will want to transition to the full versions of the IDE.

Back to the top