Posts

Visualforce Page with Wrapper Class Custom Controller and Pagination > Apex and Visualforce

Visualforce Page with Wrapper Class Custom Controller and Pagination > Apex and Visualforce Salesforce Development and Implementations Wrapper Classes in Salesforce: Lets start by understanding what a Wrapper Class is. A wrapper or container class is a class, data structure, or an abstract data type whose instances are a collections of multiple objects. Its a custom type defined by the Salesforce Dev where he defines the properties of the wrapper class. Within Apex & Visualforce this can be extremely helpful to achieve many business scenarios within the Salesforce CRM software. Using Wrapper classes we can have the ability to check few records from the displayed list and process them for some action. 

Visualforce Page with Custom Controller and Pagination > Apex and Visualforce

Visualforce Page with Custom Controller and Pagination > Apex and Visualforce Salesforce Development and Implementations As I go on learning about development on and using the Salesforce Platform, I have decided to share my practice sessions / codes, hoping it could help someone in the future. Here is the code for a Visualforce Page with a Custom Apex Controller, that displays Account and User Standard Objects information and also has Pagination implemented on the Account Object. Code:

Distributed Deadlock Detection using Chandy Haas Misra > Java Program

Distributed Deadlock Detection using Chandy Haas Misra > Java Program Parallel and Distributed Systems Program: package chandyhaasmisra; import java.util.*; class Message {

Implement Client/Server using RPC > Java Program

Image
Implement Client/Server using RPC > Java Program Parallel and Distributed Systems

K Nearest Neighbors (KNN) > Python Program

K Nearest Neighbors (KNN) > Python Program Machine Learning knn.py from numpy import * import operator def createDataSet():     group = array([[1.0,1.1],[1.0,1.0],[0,0],[0,0.1]])     labels = ['A','A','B','B']     return group, labels

K-Means Clustering Algorithm > Java Program

K-Means Clustering Algorithm > Java Program Data Warehousing and Mining Program: import java.util.*; public class KMeans {

Wumpus World Problem Implementation > Java Program

Wumpus World Problem Implementation > Java Program Artificial Intelligence Program: import java.util.*; class Environment {