Research Article

MCAF: Developing an Annotation-Based Offloading Framework for Mobile Cloud Computing

Algorithm 4

Generating the “AddClass” to be run on the Cloud.
package org.cloud.annotations.MainActivity;
public class AddClass {
 public int Add(int x, int y) {
  return x + y;
 }
}