Package com.salesforce.ide.api.metadata.types

Examples of com.salesforce.ide.api.metadata.types.ReportTypeColumn


                // if relationshipName is null then use fieldName but remove trailing "Id"
                fieldName =
                        Utils.isNotEmpty(field.getRelationshipName()) ? field.getRelationshipName() : fieldName
                                .substring(0, fieldName.length() - 2);
            }
            ReportTypeColumn column = new ReportTypeColumn();
            column.setCheckedByDefault(false);
            column.setField(fieldName);
            column.setTable(tableName);
            section.getColumns().add(column);
        }
        reportType.getSections().clear(); // spring bean, reportTypeMetadata is singleton; therefore, content from
        // previous session won't be clean-up.
        reportType.getSections().add(section);
View Full Code Here

TOP

Related Classes of com.salesforce.ide.api.metadata.types.ReportTypeColumn

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.