01: /*
02: * Copyright (c) 2004 JETA Software, Inc. All rights reserved.
03: *
04: * Redistribution and use in source and binary forms, with or without modification,
05: * are permitted provided that the following conditions are met:
06: *
07: * o Redistributions of source code must retain the above copyright notice,
08: * this list of conditions and the following disclaimer.
09: *
10: * o Redistributions in binary form must reproduce the above copyright notice,
11: * this list of conditions and the following disclaimer in the documentation
12: * and/or other materials provided with the distribution.
13: *
14: * o Neither the name of JETA Software nor the names of its contributors may
15: * be used to endorse or promote products derived from this software without
16: * specific prior written permission.
17: *
18: * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
19: * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20: * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
21: * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
22: * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
23: * INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
24: * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
25: * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26: * INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
27: * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28: */
29:
30: package com.jeta.forms.store.properties;
31:
32: import java.awt.Component;
33: import java.io.IOException;
34:
35: import javax.swing.border.Border;
36: import javax.swing.border.TitledBorder;
37:
38: import com.jeta.forms.store.JETAObjectInput;
39: import com.jeta.forms.store.JETAObjectOutput;
40:
41: /**
42: * A property for a titled border
43: *
44: * @author Jeff Tassin
45: */
46: public class TitledBorderProperty extends BorderProperty {
47: static final long serialVersionUID = -8705211071875597758L;
48:
49: /**
50: * The version of this class
51: */
52: public static final int VERSION = 1;
53:
54: /**
55: * Creates an uninitialized <code>TitledBorderProperty</code> instance.
56: */
57: public TitledBorderProperty() {
58:
59: }
60:
61: /**
62: * Creates a titled border instance that can be applied to any Swing
63: * component.
64: */
65: public Border createBorder(Component comp) {
66: TitledBorder b = new TitledBorder(getTitle());
67: b.setTitlePosition(getPosition());
68: b.setTitleJustification(getJustification());
69: b.setTitleColor(new ColorProxy(getTextColorProperty()));
70: return b;
71: }
72:
73: /**
74: * JETAPersistable Implementation
75: */
76: public void read(JETAObjectInput in) throws ClassNotFoundException,
77: IOException {
78: super .read(in.getSuperClassInput());
79: int version = in.readVersion();
80: }
81:
82: /**
83: * JETAPersistable Implementation
84: */
85: public void write(JETAObjectOutput out) throws IOException {
86: super .write(out.getSuperClassOutput(BorderProperty.class));
87: out.writeVersion(VERSION);
88: }
89:
90: public String toString() {
91: return "TITLED";
92: }
93: }
|