Source Code Cross Referenced for SynthPainter.java in  » Apache-Harmony-Java-SE » javax-package » javax » swing » plaf » synth » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Apache Harmony Java SE » javax package » javax.swing.plaf.synth 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /*
002:         *  Licensed to the Apache Software Foundation (ASF) under one or more
003:         *  contributor license agreements.  See the NOTICE file distributed with
004:         *  this work for additional information regarding copyright ownership.
005:         *  The ASF licenses this file to You under the Apache License, Version 2.0
006:         *  (the "License"); you may not use this file except in compliance with
007:         *  the License.  You may obtain a copy of the License at
008:         *
009:         *     http://www.apache.org/licenses/LICENSE-2.0
010:         *
011:         *  Unless required by applicable law or agreed to in writing, software
012:         *  distributed under the License is distributed on an "AS IS" BASIS,
013:         *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
014:         *  See the License for the specific language governing permissions and
015:         *  limitations under the License.
016:         */
017:
018:        package javax.swing.plaf.synth;
019:
020:        import java.awt.Graphics;
021:
022:        /**
023:         * SynthPainter class provides the methods for painting all the JComponents. All
024:         * the paint methods are internally blank.
025:         */
026:        @SuppressWarnings("unused")
027:        public abstract class SynthPainter {
028:
029:            public void paintArrowButtonBackground(SynthContext context,
030:                    Graphics g, int x, int y, int w, int h) {
031:                // Blank
032:            }
033:
034:            public void paintArrowButtonBorder(SynthContext context,
035:                    Graphics g, int x, int y, int w, int h) {
036:                // Blank
037:            }
038:
039:            public void paintArrowButtonForeground(SynthContext context,
040:                    Graphics g, int x, int y, int w, int h, int direction) {
041:                // Blank
042:            }
043:
044:            public void paintButtonBackground(SynthContext context, Graphics g,
045:                    int x, int y, int w, int h) {
046:                // Blank
047:            }
048:
049:            public void paintButtonBorder(SynthContext context, Graphics g,
050:                    int x, int y, int w, int h) {
051:                // Blank
052:            }
053:
054:            public void paintCheckBoxBackground(SynthContext context,
055:                    Graphics g, int x, int y, int w, int h) {
056:                // Blank
057:            }
058:
059:            public void paintCheckBoxBorder(SynthContext context, Graphics g,
060:                    int x, int y, int w, int h) {
061:                // Blank
062:            }
063:
064:            public void paintCheckBoxMenuItemBackground(SynthContext context,
065:                    Graphics g, int x, int y, int w, int h) {
066:                // Blank
067:            }
068:
069:            public void paintCheckBoxMenuItemBorder(SynthContext context,
070:                    Graphics g, int x, int y, int w, int h) {
071:                // Blank
072:            }
073:
074:            public void paintColorChooserBackground(SynthContext context,
075:                    Graphics g, int x, int y, int w, int h) {
076:                // Blank
077:            }
078:
079:            public void paintColorChooserBorder(SynthContext context,
080:                    Graphics g, int x, int y, int w, int h) {
081:                // Blank
082:            }
083:
084:            public void paintComboBoxBackground(SynthContext context,
085:                    Graphics g, int x, int y, int w, int h) {
086:                // Blank
087:            }
088:
089:            public void paintComboBoxBorder(SynthContext context, Graphics g,
090:                    int x, int y, int w, int h) {
091:                // Blank
092:            }
093:
094:            public void paintDesktopIconBackground(SynthContext context,
095:                    Graphics g, int x, int y, int w, int h) {
096:                // Blank
097:            }
098:
099:            public void paintDesktopIconBorder(SynthContext context,
100:                    Graphics g, int x, int y, int w, int h) {
101:                // Blank
102:            }
103:
104:            public void paintDesktopPaneBackground(SynthContext context,
105:                    Graphics g, int x, int y, int w, int h) {
106:                // Blank
107:            }
108:
109:            public void paintDesktopPaneBorder(SynthContext context,
110:                    Graphics g, int x, int y, int w, int h) {
111:                // Blank
112:            }
113:
114:            public void paintEditorPaneBackground(SynthContext context,
115:                    Graphics g, int x, int y, int w, int h) {
116:                // Blank
117:            }
118:
119:            public void paintEditorPaneBorder(SynthContext context, Graphics g,
120:                    int x, int y, int w, int h) {
121:                // Blank
122:            }
123:
124:            public void paintFileChooserBackground(SynthContext context,
125:                    Graphics g, int x, int y, int w, int h) {
126:                // Blank
127:            }
128:
129:            public void paintFileChooserBorder(SynthContext context,
130:                    Graphics g, int x, int y, int w, int h) {
131:                // Blank
132:            }
133:
134:            public void paintFormattedTextFieldBackground(SynthContext context,
135:                    Graphics g, int x, int y, int w, int h) {
136:                // Blank
137:            }
138:
139:            public void paintFormattedTextFieldBorder(SynthContext context,
140:                    Graphics g, int x, int y, int w, int h) {
141:                // Blank
142:            }
143:
144:            public void paintInternalFrameBackground(SynthContext context,
145:                    Graphics g, int x, int y, int w, int h) {
146:                // Blank
147:            }
148:
149:            public void paintInternalFrameBorder(SynthContext context,
150:                    Graphics g, int x, int y, int w, int h) {
151:                // Blank
152:            }
153:
154:            public void paintInternalFrameTitlePaneBackground(
155:                    SynthContext context, Graphics g, int x, int y, int w, int h) {
156:                // Blank
157:            }
158:
159:            public void paintInternalFrameTitlePaneBorder(SynthContext context,
160:                    Graphics g, int x, int y, int w, int h) {
161:                // Blank
162:            }
163:
164:            public void paintLabelBackground(SynthContext context, Graphics g,
165:                    int x, int y, int w, int h) {
166:                // Blank
167:            }
168:
169:            public void paintLabelBorder(SynthContext context, Graphics g,
170:                    int x, int y, int w, int h) {
171:                // Blank
172:            }
173:
174:            public void paintListBackground(SynthContext context, Graphics g,
175:                    int x, int y, int w, int h) {
176:                // Blank
177:            }
178:
179:            public void paintListBorder(SynthContext context, Graphics g,
180:                    int x, int y, int w, int h) {
181:                // Blank
182:            }
183:
184:            public void paintMenuBackground(SynthContext context, Graphics g,
185:                    int x, int y, int w, int h) {
186:                // Blank
187:            }
188:
189:            public void paintMenuBarBackground(SynthContext context,
190:                    Graphics g, int x, int y, int w, int h) {
191:                // Blank
192:            }
193:
194:            public void paintMenuBarBorder(SynthContext context, Graphics g,
195:                    int x, int y, int w, int h) {
196:                // Blank
197:            }
198:
199:            public void paintMenuBorder(SynthContext context, Graphics g,
200:                    int x, int y, int w, int h) {
201:                // Blank
202:            }
203:
204:            public void paintMenuItemBackground(SynthContext context,
205:                    Graphics g, int x, int y, int w, int h) {
206:                // Blank
207:            }
208:
209:            public void paintMenuItemBorder(SynthContext context, Graphics g,
210:                    int x, int y, int w, int h) {
211:                // Blank
212:            }
213:
214:            public void paintOptionPaneBackground(SynthContext context,
215:                    Graphics g, int x, int y, int w, int h) {
216:                // Blank
217:            }
218:
219:            public void paintOptionPaneBorder(SynthContext context, Graphics g,
220:                    int x, int y, int w, int h) {
221:                // Blank
222:            }
223:
224:            public void paintPanelBackground(SynthContext context, Graphics g,
225:                    int x, int y, int w, int h) {
226:                // Blank
227:            }
228:
229:            public void paintPanelBorder(SynthContext context, Graphics g,
230:                    int x, int y, int w, int h) {
231:                // Blank
232:            }
233:
234:            public void paintPasswordFieldBackground(SynthContext context,
235:                    Graphics g, int x, int y, int w, int h) {
236:                // Blank
237:            }
238:
239:            public void paintPasswordFieldBorder(SynthContext context,
240:                    Graphics g, int x, int y, int w, int h) {
241:                // Blank
242:            }
243:
244:            public void paintPopupMenuBackground(SynthContext context,
245:                    Graphics g, int x, int y, int w, int h) {
246:                // Blank
247:            }
248:
249:            public void paintPopupMenuBorder(SynthContext context, Graphics g,
250:                    int x, int y, int w, int h) {
251:                // Blank
252:            }
253:
254:            public void paintProgressBarBackground(SynthContext context,
255:                    Graphics g, int x, int y, int w, int h) {
256:                // Blank
257:            }
258:
259:            public void paintProgressBarBorder(SynthContext context,
260:                    Graphics g, int x, int y, int w, int h) {
261:                // Blank
262:            }
263:
264:            public void paintProgressBarForeground(SynthContext context,
265:                    Graphics g, int x, int y, int w, int h, int orientation) {
266:                // Blank
267:            }
268:
269:            public void paintRadioButtonBackground(SynthContext context,
270:                    Graphics g, int x, int y, int w, int h) {
271:                // Blank
272:            }
273:
274:            public void paintRadioButtonBorder(SynthContext context,
275:                    Graphics g, int x, int y, int w, int h) {
276:                // Blank
277:            }
278:
279:            public void paintRadioButtonMenuItemBackground(
280:                    SynthContext context, Graphics g, int x, int y, int w, int h) {
281:                // Blank
282:            }
283:
284:            public void paintRadioButtonMenuItemBorder(SynthContext context,
285:                    Graphics g, int x, int y, int w, int h) {
286:                // Blank
287:            }
288:
289:            public void paintRootPaneBackground(SynthContext context,
290:                    Graphics g, int x, int y, int w, int h) {
291:                // Blank
292:            }
293:
294:            public void paintRootPaneBorder(SynthContext context, Graphics g,
295:                    int x, int y, int w, int h) {
296:                // Blank
297:            }
298:
299:            public void paintScrollBarBackground(SynthContext context,
300:                    Graphics g, int x, int y, int w, int h) {
301:                // Blank
302:            }
303:
304:            public void paintScrollBarBorder(SynthContext context, Graphics g,
305:                    int x, int y, int w, int h) {
306:                // Blank
307:            }
308:
309:            public void paintScrollBarThumbBackground(SynthContext context,
310:                    Graphics g, int x, int y, int w, int h, int orientation) {
311:                // Blank
312:            }
313:
314:            public void paintScrollBarThumbBorder(SynthContext context,
315:                    Graphics g, int x, int y, int w, int h, int orientation) {
316:                // Blank
317:            }
318:
319:            public void paintScrollBarTrackBackground(SynthContext context,
320:                    Graphics g, int x, int y, int w, int h) {
321:                // Blank
322:            }
323:
324:            public void paintScrollBarTrackBorder(SynthContext context,
325:                    Graphics g, int x, int y, int w, int h) {
326:                // Blank
327:            }
328:
329:            public void paintScrollPaneBackground(SynthContext context,
330:                    Graphics g, int x, int y, int w, int h) {
331:                // Blank
332:            }
333:
334:            public void paintScrollPaneBorder(SynthContext context, Graphics g,
335:                    int x, int y, int w, int h) {
336:                // Blank
337:            }
338:
339:            public void paintSeparatorBackground(SynthContext context,
340:                    Graphics g, int x, int y, int w, int h) {
341:                // Blank
342:            }
343:
344:            public void paintSeparatorBorder(SynthContext context, Graphics g,
345:                    int x, int y, int w, int h) {
346:                // Blank
347:            }
348:
349:            public void paintSeparatorForeground(SynthContext context,
350:                    Graphics g, int x, int y, int w, int h, int orientation) {
351:                // Blank
352:            }
353:
354:            public void paintSliderBackground(SynthContext context, Graphics g,
355:                    int x, int y, int w, int h) {
356:                // Blank
357:            }
358:
359:            public void paintSliderBorder(SynthContext context, Graphics g,
360:                    int x, int y, int w, int h) {
361:                // Blank
362:            }
363:
364:            public void paintSliderThumbBackground(SynthContext context,
365:                    Graphics g, int x, int y, int w, int h, int orientation) {
366:                // Blank
367:            }
368:
369:            public void paintSliderThumbBorder(SynthContext context,
370:                    Graphics g, int x, int y, int w, int h, int orientation) {
371:                // Blank
372:            }
373:
374:            public void paintSliderTrackBackground(SynthContext context,
375:                    Graphics g, int x, int y, int w, int h) {
376:                // Blank
377:            }
378:
379:            public void paintSliderTrackBorder(SynthContext context,
380:                    Graphics g, int x, int y, int w, int h) {
381:                // Blank
382:            }
383:
384:            public void paintSpinnerBackground(SynthContext context,
385:                    Graphics g, int x, int y, int w, int h) {
386:                // Blank
387:            }
388:
389:            public void paintSpinnerBorder(SynthContext context, Graphics g,
390:                    int x, int y, int w, int h) {
391:                // Blank
392:            }
393:
394:            public void paintSplitPaneBackground(SynthContext context,
395:                    Graphics g, int x, int y, int w, int h) {
396:                // Blank
397:            }
398:
399:            public void paintSplitPaneBorder(SynthContext context, Graphics g,
400:                    int x, int y, int w, int h) {
401:                // Blank
402:            }
403:
404:            public void paintSplitPaneDividerBackground(SynthContext context,
405:                    Graphics g, int x, int y, int w, int h) {
406:                // Blank
407:            }
408:
409:            public void paintSplitPaneDividerForeground(SynthContext context,
410:                    Graphics g, int x, int y, int w, int h, int orientation) {
411:                // Blank
412:            }
413:
414:            public void paintSplitPaneDragDivider(SynthContext context,
415:                    Graphics g, int x, int y, int w, int h, int orientation) {
416:                // Blank
417:            }
418:
419:            public void paintTabbedPaneBackground(SynthContext context,
420:                    Graphics g, int x, int y, int w, int h) {
421:                // Blank
422:            }
423:
424:            public void paintTabbedPaneBorder(SynthContext context, Graphics g,
425:                    int x, int y, int w, int h) {
426:                // Blank
427:            }
428:
429:            public void paintTabbedPaneContentBackground(SynthContext context,
430:                    Graphics g, int x, int y, int w, int h) {
431:                // Blank
432:            }
433:
434:            public void paintTabbedPaneContentBorder(SynthContext context,
435:                    Graphics g, int x, int y, int w, int h) {
436:                // Blank
437:            }
438:
439:            public void paintTabbedPaneTabAreaBackground(SynthContext context,
440:                    Graphics g, int x, int y, int w, int h) {
441:                // Blank
442:            }
443:
444:            public void paintTabbedPaneTabAreaBorder(SynthContext context,
445:                    Graphics g, int x, int y, int w, int h) {
446:                // Blank
447:            }
448:
449:            public void paintTabbedPaneTabBackground(SynthContext context,
450:                    Graphics g, int x, int y, int w, int h, int tabIndex) {
451:                // Blank
452:            }
453:
454:            public void paintTabbedPaneTabBorder(SynthContext context,
455:                    Graphics g, int x, int y, int w, int h, int tabIndex) {
456:                // Blank
457:            }
458:
459:            public void paintTableBackground(SynthContext context, Graphics g,
460:                    int x, int y, int w, int h) {
461:                // Blank
462:            }
463:
464:            public void paintTableBorder(SynthContext context, Graphics g,
465:                    int x, int y, int w, int h) {
466:                // Blank
467:            }
468:
469:            public void paintTableHeaderBackground(SynthContext context,
470:                    Graphics g, int x, int y, int w, int h) {
471:                // Blank
472:            }
473:
474:            public void paintTableHeaderBorder(SynthContext context,
475:                    Graphics g, int x, int y, int w, int h) {
476:                // Blank
477:            }
478:
479:            public void paintTextAreaBackground(SynthContext context,
480:                    Graphics g, int x, int y, int w, int h) {
481:                // Blank
482:            }
483:
484:            public void paintTextAreaBorder(SynthContext context, Graphics g,
485:                    int x, int y, int w, int h) {
486:                // Blank
487:            }
488:
489:            public void paintTextFieldBackground(SynthContext context,
490:                    Graphics g, int x, int y, int w, int h) {
491:                // Blank
492:            }
493:
494:            public void paintTextFieldBorder(SynthContext context, Graphics g,
495:                    int x, int y, int w, int h) {
496:                // Blank
497:            }
498:
499:            public void paintTextPaneBackground(SynthContext context,
500:                    Graphics g, int x, int y, int w, int h) {
501:                // Blank
502:            }
503:
504:            public void paintTextPaneBorder(SynthContext context, Graphics g,
505:                    int x, int y, int w, int h) {
506:                // Blank
507:            }
508:
509:            public void paintToggleButtonBackground(SynthContext context,
510:                    Graphics g, int x, int y, int w, int h) {
511:                // Blank
512:            }
513:
514:            public void paintToggleButtonBorder(SynthContext context,
515:                    Graphics g, int x, int y, int w, int h) {
516:                // Blank
517:            }
518:
519:            public void paintToolBarBackground(SynthContext context,
520:                    Graphics g, int x, int y, int w, int h) {
521:                // Blank
522:            }
523:
524:            public void paintToolBarBorder(SynthContext context, Graphics g,
525:                    int x, int y, int w, int h) {
526:                // Blank
527:            }
528:
529:            public void paintToolBarContentBackground(SynthContext context,
530:                    Graphics g, int x, int y, int w, int h) {
531:                // Blank
532:            }
533:
534:            public void paintToolBarContentBorder(SynthContext context,
535:                    Graphics g, int x, int y, int w, int h) {
536:                // Blank
537:            }
538:
539:            public void paintToolBarDragWindowBackground(SynthContext context,
540:                    Graphics g, int x, int y, int w, int h) {
541:                // Blank
542:            }
543:
544:            public void paintToolBarDragWindowBorder(SynthContext context,
545:                    Graphics g, int x, int y, int w, int h) {
546:                // Blank
547:            }
548:
549:            public void paintToolTipBackground(SynthContext context,
550:                    Graphics g, int x, int y, int w, int h) {
551:                // Blank
552:            }
553:
554:            public void paintToolTipBorder(SynthContext context, Graphics g,
555:                    int x, int y, int w, int h) {
556:                // Blank
557:            }
558:
559:            public void paintTreeBackground(SynthContext context, Graphics g,
560:                    int x, int y, int w, int h) {
561:                // Blank
562:            }
563:
564:            public void paintTreeBorder(SynthContext context, Graphics g,
565:                    int x, int y, int w, int h) {
566:                // Blank
567:            }
568:
569:            public void paintTreeCellBackground(SynthContext context,
570:                    Graphics g, int x, int y, int w, int h) {
571:                // Blank
572:            }
573:
574:            public void paintTreeCellBorder(SynthContext context, Graphics g,
575:                    int x, int y, int w, int h) {
576:                // Blank
577:            }
578:
579:            public void paintTreeCellFocus(SynthContext context, Graphics g,
580:                    int x, int y, int w, int h) {
581:                // Blank
582:            }
583:
584:            public void paintViewportBackground(SynthContext context,
585:                    Graphics g, int x, int y, int w, int h) {
586:                // Blank
587:            }
588:
589:            public void paintViewportBorder(SynthContext context, Graphics g,
590:                    int x, int y, int w, int h) {
591:                // Blank
592:            }
593:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.