Examples of moveToLastChar()


Examples of Framework.TextData.moveToLastChar()

     */
    public void dumpFieldState(DataField pField, String pEvent) {
        TextData aMsg = new TextData();
        Class<?> aClass = ValidatingClass.class;
        TextData aValue = new TextData(Name.getWithCharacterField(pField).getValue());
        if (aValue.moveToLastChar(".")) {
            aValue = aValue.copyRange(aValue.getOffset()+1);
        }

        Field anAttr = FrameworkUtils.getField(aClass, aValue.getValue());
        aMsg.concat("DataField:").concat(pEvent).concat(" (").concat(Name.getWithCharacterField(pField)).concat(") ");
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.