CSCC

CSCC: Simple, Efficient, Context Sensitive Code Completion Support for Better API Usability

Developers depend on APIs of frameworks and libraries to support the development process. Due to a large number of APIs, it is difficult to learn, remember and use them during the development of a software. To mitigate the problem modern integrated development environments provide code completion facility that frees developers from remembering every detail. We introduce CSCC, a simple, efficient context-sensitive code completion tool that leverages previous code examples to support method completion. Compared to the existing code completion tools, CSCC uses new sources of information together with lightweight context-sensitive source code analysis to better recommend API method calls.

Installation:

The tool is implemented as an Eclipse plugin. Please download the following file and put the file in the dropins folder of Eclipse. We recommend using Eclipse Kepler (Windows version) which can be downloaded from online (Click here to download Eclipse).

Required File

CSCC Plugin (Click on the link to download the jar file)
where to place the jar file

Download and copy the jar file in dropins folder of your Eclipse. Now restart Eclipse. You can find CSCC configuration options in the Eclipse Preference Page.

Enable/Disable CSCC

You can also enable/disable CSCC by selecting or deselecting the check box associated with CSCC in the Advanced Content Assist preference page of Eclipse (see the above figure).

select

CSCC in Action

CSCC comes with code examples for Java SWING/AWT libraries. Therefore, the tool can provide method completion support for after pressing of any object from those libraries. For example, in the following figure, a developer is writing code to create a JFrame. Consider he is in the middle of his development and invoke CSCC by pressing dot (.) after the JFrame object. CSCC will show possible method calls that can be called within this context in a popup menu. Developers can select any one of them and the corresponding method call will be inserted in the source code.

CSCC output
The completion proposals made by CSCC are highlighted with a different icon and font.

Creating Custom Model

CSCC now supports creating custom models for your target framework code completion. To do that you need to first create a folder named “model” in a specific location in your computer. Next, you need to create a file (“framework.txt”) and put the file inside the model folder. The exact location of these files can be obtained by accessing the preference page of CSCC (select window->preferences, you can see CSCC option on the left-hand side of the dialog box, see also following figure). The “framework.txt” file is a simple plain text file, where each line of the file should contain a framework name. For example, if you want to create a custom model for java SWING framework, you need to the path prefix (“javax.swing.”) in the file. If you also want to create model for AWT framework, simply add “java.awt.” in a line in the framework.txt file.

preference

Now, you need to instruct CSCC to generate the model. Select a project in your Eclipse IDE, right click to bring the popup menu (see figure below). Select the command “generate model” which can be found under the CSCC menu item. CSCC will ask you to select a folder to save the file. Remember, you need to save the file under the model folder.

screenshot-01-17-2017-14-18-16

Leave a comment