SemiPrivate.java revision 2ad60cfc28e14ee8f0bb038720836a4696c478ad
1// Copyright 2006 The Android Open Source Project
2
3/**
4 * Version with package scope access.
5 */
6public class SemiPrivate {
7    /* not private */ static String mPrivvy = "stuff";
8}
9
10