Examples of toStringLite()


Examples of com.salesforce.ide.core.model.ComponentList.toStringLite()

        // log initial gatherings
        if (logger.isInfoEnabled()) {
            logger.info("Initially gathered [" + projectPackageList.getComponentCount(false) + "] components in ["
                    + projectPackageList.size() + "] project packages to saved");
            ComponentList tmpComponentList = projectPackageList.getAllComponents();
            logger.info(tmpComponentList != null ? tmpComponentList.toStringLite() : "No components found");
        }

        // check for conflicts
        if (checkForConflicts) {
            try {
View Full Code Here

Examples of com.salesforce.ide.core.remote.MetadataStubExt.toStringLite()

        for (ForceProject forceProject : forceProjects) {
            MetadataStubExt metadataStubExt = metadataStubs.get(forceProject);
            strBuffer.append("\n (").append(++metadataStubCnt).append(") ").append(forceProject.getLogDisplay())
                    .append(" [").append(forceProject.hashCode()).append("]");
            if (metadataStubExt != null) {
                strBuffer.append(", ").append(metadataStubExt.toStringLite());
            }
        }
        logger.info(strBuffer.toString());
    }
}
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.