EMMA Coverage Report (generated Fri Jun 19 09:16:10 CEST 2009)
[all classes][org.ktc.rbutils.rb.generation]

COVERAGE SUMMARY FOR SOURCE FILE [RbGeneratorCli.java]

nameclass, %method, %block, %line, %
RbGeneratorCli.java0%   (0/1)0%   (0/2)0%   (0/13)0%   (0/5)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class RbGeneratorCli0%   (0/1)0%   (0/2)0%   (0/13)0%   (0/5)
RbGeneratorCli (): void 0%   (0/1)0%   (0/3)0%   (0/2)
main (String []): void 0%   (0/1)0%   (0/10)0%   (0/3)

1/*
2 * Copyright  2005-2006 The RbUtils Project
3 *
4 *  Licensed under the Apache License, Version 2.0 (the "License");
5 *  you may not use this file except in compliance with the License.
6 *  You may obtain a copy of the License at
7 *
8 *      http://www.apache.org/licenses/LICENSE-2.0
9 *
10 *  Unless required by applicable law or agreed to in writing, software
11 *  distributed under the License is distributed on an "AS IS" BASIS,
12 *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 *  See the License for the specific language governing permissions and
14 *  limitations under the License.
15 *
16 */
17 
18// $Id: RbGeneratorCli.java,v 1.1 2008/02/04 18:31:51 redfish4ktc Exp $
19 
20package org.ktc.rbutils.rb.generation;
21 
22import java.io.PrintWriter;
23 
24/**
25 * Command line utility to be called for ResourceBundle generation (see project documentation for
26 * cli options).
27 * @since RbUtils 0.11
28 * @version $Revision: 1.1 $
29 * @author redfish4ktc
30 */
31public final class RbGeneratorCli {
32 
33    /**
34     * Creates a new instance of RbGeneratorCli. Should not be called.
35     */
36    private RbGeneratorCli() {
37        // Do nothing
38    }
39 
40    /**
41     * Launches the generation of java ResourceBundle from source files found in a directory.
42     * @param args the arguments to be passed to the utility.
43     */
44    public static void main(final String[] args) {
45        final int exitValue = RbGeneratorUtility.mainNoExit(args, new PrintWriter(System.out));
46        System.exit(exitValue);
47    }
48 
49}

[all classes][org.ktc.rbutils.rb.generation]
EMMA 2.0.5312 (C) Vladimir Roubtsov