Package com.sourcetap.sfa.event

Examples of com.sourcetap.sfa.event.DataBuffer


        String primaryEntityTitle = "";

        if ((dataMatrix.getCurrentBuffer().getContents() == null) ||
                (dataMatrix.getCurrentBuffer().getContents().size() < 1)) {
            // No rows in data matrix.  Set the title using an empty string.
            DataBuffer tempBuffer = new DataBuffer(delegator, dataMatrix);
            primaryEntityTitle = UIWebUtility.decodeEntityDisplayDef(titleDef,
                    tempBuffer.createEmptyRow(), "");
        } else {
            // There is data in the data matrix.  Use the first row to set the title.
            primaryEntityTitle = UIWebUtility.decodeEntityDisplayDef(titleDef,
                    dataMatrix.getCurrentBuffer().getContentsRow(0), "");
        }
View Full Code Here

TOP

Related Classes of com.sourcetap.sfa.event.DataBuffer

Copyright © 2018 www.massapicom. 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.