Home | History | Annotate | Download | only in sampleplugin
      1 package com.android.sampleplugin;
      2 
      3 public class BackgroundTest {
      4 
      5     public BackgroundTest() {}
      6 
      7     public int addInt(int x, int y) {
      8         return x + y;
      9     }
     10 
     11 }
     12