当前位置: 首页>>代码示例>>Java>>正文


Java IntegerRangeHint类代码示例

本文整理汇总了Java中org.javarosa.core.model.condition.pivot.IntegerRangeHint的典型用法代码示例。如果您正苦于以下问题:Java IntegerRangeHint类的具体用法?Java IntegerRangeHint怎么用?Java IntegerRangeHint使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


IntegerRangeHint类属于org.javarosa.core.model.condition.pivot包,在下文中一共展示了IntegerRangeHint类的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: guessMaxStringLength

import org.javarosa.core.model.condition.pivot.IntegerRangeHint; //导入依赖的package包/类
protected int guessMaxStringLength(FormEntryPrompt prompt) throws UnpivotableExpressionException{
    //Awful. Need factory for this
    //TODO: Negative numbers?
    if(template instanceof IntegerData) {
        IntegerRangeHint hint = new IntegerRangeHint();
        prompt.requestConstraintHint(hint);

        IntegerData maxexample = hint.getMax();
        IntegerData minexample = hint.getMin();

        if(minexample != null) {
            if(((Integer)minexample.getValue()).intValue() < 0) {
                throw new UnpivotableExpressionException();
            }
        }

        if(maxexample != null) {
            int max = ((Integer)maxexample.getValue()).intValue();
            if(!hint.isMaxInclusive()) {
                max -= 1;
            }
            return String.valueOf(max).length();
        }
    }
    throw new UnpivotableExpressionException();
}
 
开发者ID:dimagi,项目名称:commcare-j2me,代码行数:27,代码来源:NumericEntryWidget.java

示例2: assertConstraintMaxMin

import org.javarosa.core.model.condition.pivot.IntegerRangeHint; //导入依赖的package包/类
private void assertConstraintMaxMin(Integer max, Integer min){
    IntegerRangeHint hint = new IntegerRangeHint();
    FormEntryPrompt prompt = fpi.getFormEntryModel().getQuestionPrompt();
    try {
        prompt.requestConstraintHint(hint);

        if(max != null) {
            assert (max.equals(hint.getMax().getValue()));
        } else{
            assert(hint.getMax() == null);
        }

        if(min != null) {
            assert (min.equals(hint.getMin().getValue()));
        } else{
            assert(hint.getMin() == null);
        }
    } catch (UnpivotableExpressionException e) {
        e.printStackTrace();
        fail(e.getMessage());
    }
}
 
开发者ID:dimagi,项目名称:commcare-j2me,代码行数:23,代码来源:ConstraintTest.java

示例3: assertUnpivotable

import org.javarosa.core.model.condition.pivot.IntegerRangeHint; //导入依赖的package包/类
private void assertUnpivotable(){
    IntegerRangeHint hint = new IntegerRangeHint();
    FormEntryPrompt prompt = fpi.getFormEntryModel().getQuestionPrompt();
    try {
        prompt.requestConstraintHint(hint);
        fail("Should have not been able to pivot with prompt: " + prompt);
    } catch (UnpivotableExpressionException e) {
        // good
    }
}
 
开发者ID:dimagi,项目名称:commcare-j2me,代码行数:11,代码来源:ConstraintTest.java


注:本文中的org.javarosa.core.model.condition.pivot.IntegerRangeHint类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。