01: package com.xoetrope.editor.lm;
02:
03: import java.io.Serializable;
04: import java.util.Properties;
05:
06: /**
07: * A bundle of XuiPro licenses
08: * <p> Copyright (c) Xoetrope Ltd., 2002-2007</p>
09: * <p> License: see License.txt</p>
10: * @since 3.2
11: */
12: public class License implements Serializable {
13: public LicenseEntry[] licenseEntries;
14: public String signature;
15: }
|