Posts Tagged Java

Testing Java with Jython and PyUnit

JUnit, the unit test framework written by Erich Gamma and Kent Beck, is not the only alternative for unit testing in the Java environment. This article provides a simple demonstration on how to use Jython, PyUnit and Ant to unit test a Java project. To provide better elements of comparison, the example provided is the same as the one available in the JUnit distribution: MoneyTest. Read the rest of this entry »

, , ,

2 Comments

Tester Java avec Jython et PyUnit

Réaliser les tests unitaires d’applications Java en combinant l’utilisation de Jython, PyUnit et Apache Ant peut être une viable alternative à l’usage exclusif de JUnit. Read the rest of this entry »

, , , ,

2 Comments

SciTE Java API

SciTE (Scintilla Text Editor) supports API and Keyword files to customize some aspects of the editor for a given programming language. Keywords files extend the highlighting of source code files (i.e. Class names in Java), and API files allow to displays calltips, basic form of the popular Microsoft Intellisense ®. The BeanShell script, SciteJavaApi.bsh, generates both the Java API and the Keyword files for your current Java Runtime Environment.

Read the rest of this entry »

, ,

6 Comments

Java API pour SciTE

L’éditeur SciTE peut être personnalisé avec l’ajout de fichiers d’API (Application Programming Interface) et de fichiers de mots-clés pour un ou plusieurs langages de programmation. La présence de ces fichiers permet d’améliorer la coloration du langage, par exemple coloration des noms de classe pour Java, d’afficher des bulles d’aide (calltips) et aussi de faciliter la complétion automatique des mots durant l’édition. Le script BeanShell SciteJavaApi.bsh, peut générer le fichier d’API et le fichier de mots-clés Java correspondant à votre environnement Java (JRE). Read the rest of this entry »

, , ,

2 Comments

Javadoc To CHM

Javadoc To CHM is a software that generates Microsoft HTML Help projects files from a Javadoc documentation. It generates the project file (.HHP), the contents file (.HHC) and the index file (.HHK). After having generated the HTML project files, Jd2chm invokes the Microsoft HTML Help Compiler (hhc.exe) with the project file (.HHP) as parameter in order to build the Compiled HTML file (.CHM). Read the rest of this entry »

, ,

8 Comments

Javadoc To CHM

Javadoc To CHM (jd2chm) est un programme qui, à partir d’un ensemble de fichiers Javadoc, génère les sources nécessaires à la création d’une aide au format CHM (Microsoft Compiled HTML Help). Après avoir produit le fichier projet (.HHP), le fichier de contenu (.HHC) et le fichier d’index (.HHK), Jd2chm lance hhc.exe (compilateur d’aide Microsoft), afin de complèter l’aide au format CHM. Read the rest of this entry »

, , ,

No Comments