01: /*
02: * Copyright 2006 Ethan Nicholas. All rights reserved.
03: * Use is subject to license terms.
04: */
05: package jaxx.runtime;
06:
07: import java.io.*;
08:
09: import jaxx.css.*;
10:
11: public class JAXXObjectDescriptor implements Serializable {
12: private ComponentDescriptor[] descriptors;
13: private Stylesheet stylesheet;
14:
15: public JAXXObjectDescriptor(ComponentDescriptor[] descriptors,
16: Stylesheet stylesheet) {
17: this .descriptors = descriptors;
18: this .stylesheet = stylesheet;
19: }
20:
21: public ComponentDescriptor[] getComponentDescriptors() {
22: return descriptors;
23: }
24:
25: public Stylesheet getStylesheet() {
26: return stylesheet;
27: }
28: }
|