01: /* ****************************************************************************
02: * ObjectMapper.java
03: * ****************************************************************************/
04:
05: /* J_LZ_COPYRIGHT_BEGIN *******************************************************
06: * Copyright 2001-2004 Laszlo Systems, Inc. All Rights Reserved. *
07: * Use is subject to license terms. *
08: * J_LZ_COPYRIGHT_END *********************************************************/
09:
10: package org.openlaszlo.test.xmlrpc;
11:
12: public final class ObjectMapper {
13: public int dimensions[];
14: public long bgcolor;
15: public String name;
16:
17: public ObjectMapper(int h, int w, long bc, String str) {
18: dimensions = new int[2];
19: dimensions[0] = w;
20: dimensions[1] = h;
21: bgcolor = bc;
22: name = str;
23: }
24: };
|