Source code: com/mvsteenb/javauitransformer/xmltransformer/components/swing/XmlJComponent.java
1 package com.mvsteenb.javauitransformer.xmltransformer.components.swing;
2
3 import com.mvsteenb.javauitransformer.xmltransformer.components.awt.XmlContainer;
4 import com.mvsteenb.javauitransformer.xmltransformer.components.XmlComponentMapper;
5 import com.mvsteenb.javauitransformer.xmltransformer.layout.exception.UnknownLayoutManagerException;
6
7 import javax.swing.*;
8
9 /**
10 * com.mvsteenb.javauitransformer.xmltransformer.components.swing
11 *
12 * <p><b>About</b></p>
13 *
14 * <p>
15 * This class is part of the JavaUIFormatter version @build.version@ (build #@build.number@) which was built on @build.date@.
16 * </p>
17 *
18 * <p><b>Description</b></p>
19 *
20 *
21 * <p><b>Free Software</b></p>
22 *
23 * <p>
24 * Copyright (C) 2003 Mario Van Steenberghe
25 * </p>
26 *
27 * <p>
28 * <small>
29 * This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser
30 * General Public License as published by the Free Software Foundation; either version 2.1 of the License, or
31 * (at your option) any later version. This library is distributed in the hope that it will be useful,
32 * but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
33 * PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the
34 * GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc.,
35 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
36 * </small>
37 * </p>
38 *
39 * <p>
40 * <small>
41 * Please contact me at mario.vansteenberghe@pandora.be for more information.
42 * </small>
43 * </p>
44 *
45 *
46 * <p><b>Revision History</b></p>
47 *
48 * <p>
49 * Oct 2, 2003 : mvsteenb : Initial Revision
50 * </p>
51 *
52 */
53
54 public abstract class XmlJComponent extends XmlContainer {
55
56 /**
57 * Constructor
58 */
59
60 public XmlJComponent(JComponent comp, XmlComponentMapper mapper) throws UnknownLayoutManagerException {
61 super(comp, mapper);
62 }
63 }