/[classpath]/classpath/javax/swing/plaf/BorderUIResource.java
ViewVC logotype

Diff of /classpath/javax/swing/plaf/BorderUIResource.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.5 by mkoch, Wed Oct 2 12:58:40 2002 UTC revision 1.6 by mkoch, Sat Jun 7 18:38:20 2003 UTC
# Line 67  public class BorderUIResource Line 67  public class BorderUIResource
67       */       */
68      public BorderUIResource(Border delegate)      public BorderUIResource(Border delegate)
69      {      {
70            super ();
71          this.delegate = delegate;          this.delegate = delegate;
72      }      }
73    
# Line 120  public class BorderUIResource Line 121  public class BorderUIResource
121      {      {
122          public BevelBorderUIResource(int bevelType)          public BevelBorderUIResource(int bevelType)
123          {          {
124                super (bevelType);
125          }          }
126    
127          public BevelBorderUIResource(int bevelType,          public BevelBorderUIResource(int bevelType,
128                                       Color highlight,                                       Color highlight,
129                                       Color shadow)                                       Color shadow)
130          {          {
131              this(bevelType);              super (bevelType);
132          }          }
133          public BevelBorderUIResource(int bevelType,          public BevelBorderUIResource(int bevelType,
134                                       Color highlightOuter,                                       Color highlightOuter,
# Line 135  public class BorderUIResource Line 136  public class BorderUIResource
136                                       Color shadowOuter,                                       Color shadowOuter,
137                                       Color shadowInner)                                       Color shadowInner)
138          {          {
139              this(bevelType);              super (bevelType);
140          }          }
141      }      }
142    
# Line 149  public class BorderUIResource Line 150  public class BorderUIResource
150          public CompoundBorderUIResource(Border outsideBorder,          public CompoundBorderUIResource(Border outsideBorder,
151                                          Border insideBorder)                                          Border insideBorder)
152          {          {
153              super (outsideBorder, insideBorder);
154          }          }
155      }      }
156    
# Line 167  public class BorderUIResource Line 168  public class BorderUIResource
168                    
169          public EmptyBorderUIResource(Insets insets)          public EmptyBorderUIResource(Insets insets)
170          {          {
171              super (insets);
172          }          }
173      }      }
174    
# Line 181  public class BorderUIResource Line 182  public class BorderUIResource
182          public EtchedBorderUIResource() { }          public EtchedBorderUIResource() { }
183          public EtchedBorderUIResource(int etchType)          public EtchedBorderUIResource(int etchType)
184          {          {
185              super (etchType);
186          }          }
187          public EtchedBorderUIResource(Color highlight, Color shadow)          public EtchedBorderUIResource(Color highlight, Color shadow)
188          {          {
189              super (highlight, shadow);
190          }          }
191          public EtchedBorderUIResource(int etchType, Color highlight,          public EtchedBorderUIResource(int etchType, Color highlight,
192                                        Color shadow)                                        Color shadow)
193          {          {
194              super (etchType);
195          }          }
196    
197      }      }
# Line 204  public class BorderUIResource Line 205  public class BorderUIResource
205      {      {
206          public LineBorderUIResource(Color color)          public LineBorderUIResource(Color color)
207          {          {
208                           super (color);
209          }          }
210          public LineBorderUIResource(Color color,          public LineBorderUIResource(Color color,
211                                      int thickness)                                      int thickness)
212          {          {
213               super (color);
214          }          }
215      }      }
216    
# Line 223  public class BorderUIResource Line 224  public class BorderUIResource
224          public MatteBorderUIResource(int top, int left, int bottom,          public MatteBorderUIResource(int top, int left, int bottom,
225                                       int right, Color color)                                       int right, Color color)
226          {          {
227              super (top, left, bottom, right, color);
228          }          }
229          public MatteBorderUIResource(int top, int left, int bottom,          public MatteBorderUIResource(int top, int left, int bottom,
230                                       int right, Icon tileIcon)                                       int right, Icon tileIcon)
231          {          {
232              super (top, left, bottom, right, tileIcon);
233          }          }
234          public MatteBorderUIResource(Icon tileIcon)          public MatteBorderUIResource(Icon tileIcon)
235          {          {
236              super (tileIcon);
237          }          }
238      }      }
239    
# Line 245  public class BorderUIResource Line 246  public class BorderUIResource
246      {      {
247          TitledBorderUIResource(String title)          TitledBorderUIResource(String title)
248          {          {
249              super (title);
250          }          }
251          TitledBorderUIResource(Border border)          TitledBorderUIResource(Border border)
252          {          {
253              super (border);
254          }          }
255          TitledBorderUIResource(Border border, String title)          TitledBorderUIResource(Border border, String title)
256          {          {
257              super (border);
258          }          }
259          TitledBorderUIResource(Border border, String title,          TitledBorderUIResource(Border border, String title,
260                                 int titleJustification, int titlePosition)                                 int titleJustification, int titlePosition)
261          {          {
262              super (border);
263          }          }
264          TitledBorderUIResource(Border border, String title,          TitledBorderUIResource(Border border, String title,
265                                 int titleJustification, int titlePosition,                                 int titleJustification, int titlePosition,
266                                 Font titleFont)                                 Font titleFont)
267          {          {
268              super (border);
269          }          }
270          TitledBorderUIResource(Border border, String title,          TitledBorderUIResource(Border border, String title,
271                                 int titleJustification, int titlePosition,                                 int titleJustification, int titlePosition,
272                                 Font titleFont, Color titleColor)                                 Font titleFont, Color titleColor)
273          {          {
274              super (border);
275          }          }
276      }      }
277  }  }

Legend:
Removed from v.1.5  
changed lines
  Added in v.1.6

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26