/[classpath]/classpath/javax/swing/BorderFactory.java
ViewVC logotype

Diff of /classpath/javax/swing/BorderFactory.java

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

revision 1.4 by mkoch, Sun Jun 8 14:43:06 2003 UTC revision 1.5 by mkoch, Mon Jun 9 15:48:11 2003 UTC
# Line 73  public class BorderFactory Line 73  public class BorderFactory
73     */     */
74    public static Border createLineBorder (Color color, int thickness)    public static Border createLineBorder (Color color, int thickness)
75    {    {
76      return null;      return new LineBorder (color, thickness);
77    }    }
78    
79    /**    /**
# Line 83  public class BorderFactory Line 83  public class BorderFactory
83     */     */
84    public static Border createRaisedBevelBorder ()    public static Border createRaisedBevelBorder ()
85    {    {
86      return null;      return new BevelBorder (BevelBorder.RAISED);
87    }    }
88    
89    /**    /**
# Line 93  public class BorderFactory Line 93  public class BorderFactory
93     */     */
94    public static Border createLoweredBevelBorder ()    public static Border createLoweredBevelBorder ()
95    {    {
96      return null;      return new BevelBorder (BevelBorder.LOWERED);
97    }    }
98    
99    /**    /**
# Line 105  public class BorderFactory Line 105  public class BorderFactory
105     */     */
106    public static Border createBevelBorder (int type)    public static Border createBevelBorder (int type)
107    {    {
108      return null;      return new BevelBorder (type);
109    }    }
110    
111    /**    /**
# Line 120  public class BorderFactory Line 120  public class BorderFactory
120    public static Border createBevelBorder (int type, Color highlight,    public static Border createBevelBorder (int type, Color highlight,
121                                            Color shadow)                                            Color shadow)
122    {    {
123      return null;      return new BevelBorder (type, highlight, shadow);
124    }    }
125    
126    /**    /**
# Line 138  public class BorderFactory Line 138  public class BorderFactory
138                                            Color highlightInner,                                            Color highlightInner,
139                                            Color shadowOuter, Color shadowInner)                                            Color shadowOuter, Color shadowInner)
140    {    {
141      return null;      return new BevelBorder (type, highlightOuter, highlightInner, shadowOuter, shadowInner);
142    }    }
143    
144    /**    /**
# Line 148  public class BorderFactory Line 148  public class BorderFactory
148     */     */
149    public static Border createEtchedBorder ()    public static Border createEtchedBorder ()
150    {    {
151      return null;      return new EtchedBorder ();
152    }    }
153    
154    /**    /**
# Line 161  public class BorderFactory Line 161  public class BorderFactory
161     */     */
162    public static Border createEtchedBorder (Color highlight, Color shadow)    public static Border createEtchedBorder (Color highlight, Color shadow)
163    {    {
164      return null;      return new EtchedBorder (highlight, shadow);
165    }    }
166    
167    /**    /**
# Line 173  public class BorderFactory Line 173  public class BorderFactory
173     */     */
174    public static TitledBorder createTitledBorder (String title)    public static TitledBorder createTitledBorder (String title)
175    {    {
176      return null;      return new TitledBorder (title);
177    }    }
178    
179    /**    /**
# Line 185  public class BorderFactory Line 185  public class BorderFactory
185     */     */
186    public static TitledBorder createTitledBorder (Border border)    public static TitledBorder createTitledBorder (Border border)
187    {    {
188      return null;      return new TitledBorder (border);
189    }    }
190    
191    /**    /**
# Line 197  public class BorderFactory Line 197  public class BorderFactory
197     */     */
198    public static TitledBorder createTitledBorder (Border border, String title)    public static TitledBorder createTitledBorder (Border border, String title)
199    {    {
200      return null;      return new TitledBorder (border, title);
201    }    }
202    
203    /**    /**
# Line 220  public class BorderFactory Line 220  public class BorderFactory
220                                                  int titleJustification,                                                  int titleJustification,
221                                                  int titlePosition)                                                  int titlePosition)
222    {    {
223      return null;      return new TitledBorder (border, title, titleJustification, titlePosition);
224    }    }
225    
226    /**    /**
# Line 239  public class BorderFactory Line 239  public class BorderFactory
239                                                   int titlePosition,                                                   int titlePosition,
240                                                   Font titleFont)                                                   Font titleFont)
241    {    {
242      return null;      return new TitledBorder (border, title, titleJustification, titlePosition, titleFont);
243    }    }
244    
245    /**    /**
# Line 261  public class BorderFactory Line 261  public class BorderFactory
261                                                   Font titleFont,                                                   Font titleFont,
262                                                   Color titleColor)                                                   Color titleColor)
263    {    {
264      return null;      return new TitledBorder (border, title, titleJustification, titlePosition, titleFont, titleColor);
265    }    }
266    
267    /**    /**
# Line 271  public class BorderFactory Line 271  public class BorderFactory
271     */     */
272    public static Border createEmptyBorder ()    public static Border createEmptyBorder ()
273    {    {
274      return null;      return new EmptyBorder (0, 0, 0, 0);
275    }    }
276    
277    /**    /**
# Line 286  public class BorderFactory Line 286  public class BorderFactory
286     */     */
287    public static Border createEmptyBorder (int top, int left, int bottom,int right)    public static Border createEmptyBorder (int top, int left, int bottom,int right)
288    {    {
289      return null;      return new EmptyBorder (top, left, bottom, right);
290    }    }
291    
292    /**    /**
# Line 296  public class BorderFactory Line 296  public class BorderFactory
296     */     */
297    public static CompoundBorder createCompoundBorder ()    public static CompoundBorder createCompoundBorder ()
298    {    {
299      return null;      return new CompoundBorder ();
300    }    }
301    
302    /**    /**
# Line 309  public class BorderFactory Line 309  public class BorderFactory
309     */     */
310    public static CompoundBorder createCompoundBorder (Border outsideBorder, Border insideBorder)    public static CompoundBorder createCompoundBorder (Border outsideBorder, Border insideBorder)
311    {    {
312      return null;      return new CompoundBorder (outsideBorder, insideBorder);
313    }    }
314    
315    /**    /**
# Line 324  public class BorderFactory Line 324  public class BorderFactory
324     */     */
325    public static MatteBorder createMatteBorder (int top, int left, int bottom, int right, Color color)    public static MatteBorder createMatteBorder (int top, int left, int bottom, int right, Color color)
326    {    {
327      return null;      return new MatteBorder (top, left, bottom, right, color);
328    }    }
329    
330    /**    /**
# Line 343  public class BorderFactory Line 343  public class BorderFactory
343     */     */
344    public static MatteBorder createMatteBorder (int top, int left, int bottom, int right, Icon tileIcon)    public static MatteBorder createMatteBorder (int top, int left, int bottom, int right, Icon tileIcon)
345    {    {
346      return null;      return new MatteBorder (top, left, bottom, right, tileIcon);
347    }    }
348  }  }

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

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