Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.library / org.gvsig.expressionevaluator / org.gvsig.expressionevaluator.swing / org.gvsig.expressionevaluator.swing.impl / src / main / java / org / gvsig / expressionevaluator / swing / impl / I18N.java @ 44207

History | View | Annotate | Download (374 Bytes)

1
package org.gvsig.expressionevaluator.swing.impl;
2

    
3
import org.apache.commons.lang3.Range;
4

    
5
/**
6
 *
7
 * @author jjdelcerro
8
 */
9
public class I18N {
10

    
11
    static String Avoid_the_use_of_functions_not_compatible_with_SQL_in_this_data_source(String name) {
12
        return String.format("Avoid the use of functions not compatible with SQL in this data source (%s).", name);
13
    }
14

    
15
}