1/* GENERATED SOURCE. DO NOT MODIFY. */
2/*
3 *******************************************************************************
4 * Copyright (C) 2013, Google Inc, International Business Machines Corporation and         *
5 * others. All Rights Reserved.                                                *
6 *******************************************************************************
7 */
8package android.icu.text;
9
10import java.io.ObjectStreamException;
11import java.io.Serializable;
12
13/**
14 * @author markdavis
15 *
16 */
17class PluralRulesSerialProxy implements Serializable {
18    private static final long serialVersionUID = 42L;
19    private final String data;
20    PluralRulesSerialProxy(String rules) {
21        data = rules;
22    }
23    private Object readResolve() throws ObjectStreamException {
24        return PluralRules.createRules(data);
25    }
26}
27
28