• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package com.android.sampleplugin;
2 
3 public class BackgroundTest {
4 
BackgroundTest()5     public BackgroundTest() {}
6 
addInt(int x, int y)7     public int addInt(int x, int y) {
8         return x + y;
9     }
10 
11 }
12