SemiPrivate.java revision f6c387128427e121477c1b32ad35cdcaa5101ba3
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