Revision 13444 trunk/extensions/extExpressionField/src/com/iver/cit/gvsig/project/documents/table/operators/ToUpperCase.java

View differences:

ToUpperCase.java
3 3
import org.apache.bsf.BSFException;
4 4
import org.apache.bsf.BSFManager;
5 5

  
6
import com.iver.cit.gvsig.ExpresionFieldExtension;
6
import com.iver.andami.PluginServices;
7
import com.iver.cit.gvsig.ExpressionFieldExtension;
7 8
import com.iver.cit.gvsig.project.documents.table.AbstractOperator;
8 9
import com.iver.cit.gvsig.project.documents.table.IOperator;
9 10

  
......
19 20
		return "toUpperCase";
20 21
	}
21 22
	public void eval(BSFManager interpreter) throws BSFException {
22
		interpreter.eval(ExpresionFieldExtension.BEANSHELL,null,-1,-1,"String toUpperCase(String value){return value.toUpperCase();};");
23
//		interpreter.eval(ExpressionFieldExtension.BEANSHELL,null,-1,-1,"String toUpperCase(String value){return value.toUpperCase();};");
24
		interpreter.exec(ExpressionFieldExtension.JYTHON,null,-1,-1,"def toUpperCase(value):\n" +
25
				"  return value.upper()");
23 26
	}
24 27
	public boolean isEnable() {
25 28
		return (getType()==IOperator.STRING);
26 29
	}
27

  
30
	public String getDescription() {
31
	    return PluginServices.getText(this, "parameter") + ": " +
32
	    PluginServices.getText(this, "string_value") + "\n" +
33
	    PluginServices.getText(this, "returns") + ": " +
34
	    PluginServices.getText(this, "string_value") + "\n" +
35
	    PluginServices.getText(this, "description") + ": " +
36
	    "Converts all of the characters in this String to upper case using the rules of the given Locale.\n" +
37
	    "Case mappings rely heavily on the Unicode specification's character data.\n" +
38
	    "Since case mappings are not always 1:1 char mappings, the resulting String may be a different length than the original String.";
39
	}
28 40
}

Also available in: Unified diff