java/sql-dk/src/info/globalcode/sql/dk/formatting/CommonProperties.java
author František Kučera <franta-hg@frantovo.cz>
Sat, 15 Aug 2015 11:52:38 +0200
branchv_0
changeset 212 d154d6012cbe
parent 206 e2f24eea8543
permissions -rw-r--r--
property annotations: first version (inherited properties are not working yet)
     1 /**
     2  * SQL-DK
     3  * Copyright © 2015 František Kučera (frantovo.cz)
     4  *
     5  * This program is free software: you can redistribute it and/or modify
     6  * it under the terms of the GNU General Public License as published by
     7  * the Free Software Foundation, either version 3 of the License, or
     8  * (at your option) any later version.
     9  *
    10  * This program is distributed in the hope that it will be useful,
    11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
    12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
    13  * GNU General Public License for more details.
    14  *
    15  * You should have received a copy of the GNU General Public License
    16  * along with this program. If not, see <http://www.gnu.org/licenses/>.
    17  */
    18 package info.globalcode.sql.dk.formatting;
    19 
    20 import java.util.Collections;
    21 import java.util.HashMap;
    22 import java.util.Map;
    23 
    24 /**
    25  *
    26  * @author Ing. František Kučera (frantovo.cz)
    27  */
    28 public class CommonProperties {
    29 
    30 	private static final Map<Class, String> TYPE_SIMPLE_NAMES;
    31 
    32 	static {
    33 		Map<Class, String> m = new HashMap<>();
    34 		m.put(Boolean.class, "boolean");
    35 		m.put(String.class, "String");
    36 		m.put(Character.class, "char");
    37 		m.put(Integer.class, "int");
    38 		m.put(Long.class, "long");
    39 		m.put(Double.class, "double");
    40 		TYPE_SIMPLE_NAMES = Collections.unmodifiableMap(m);
    41 	}
    42 
    43 	public static String getSimpleTypeName(Class type) {
    44 		String name = TYPE_SIMPLE_NAMES.get(type);
    45 		return name == null ? type.getName() : name;
    46 	}
    47 
    48 	public static final String COLORFUL = "color";
    49 	public static final String COLORFUL_DESCRIPTION = "whether the output should be printed in color (ANSI Escape Sequences)";
    50 }