Source Code Cross Referenced for HtmlOutputLabel.java in  » EJB-Server-resin-3.1.5 » jsf » javax » faces » component » html » 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 » EJB Server resin 3.1.5 » jsf » javax.faces.component.html 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /*
002:         * Copyright (c) 1998-2008 Caucho Technology -- all rights reserved
003:         *
004:         * This file is part of Resin(R) Open Source
005:         *
006:         * Each copy or derived work must preserve the copyright notice and this
007:         * notice unmodified.
008:         *
009:         * Resin Open Source is free software; you can redistribute it and/or modify
010:         * it under the terms of the GNU General Public License version 2
011:         * as published by the Free Software Foundation.
012:         *
013:         * Resin Open Source is distributed in the hope that it will be useful,
014:         * but WITHOUT ANY WARRANTY; without even the implied warranty of
015:         * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE, or any warranty
016:         * of NON-INFRINGEMENT.  See the GNU General Public License for more
017:         * details.
018:         *
019:         * You should have received a copy of the GNU General Public License
020:         * along with Resin Open Source; if not, write to the
021:         *
022:         *   Free Software Foundation, Inc.
023:         *   59 Temple Place, Suite 330
024:         *   Boston, MA 02111-1307  USA
025:         *
026:         * @author Scott Ferguson
027:         */
028:
029:        package javax.faces.component.html;
030:
031:        import java.util.*;
032:
033:        import javax.el.*;
034:
035:        import javax.faces.component.*;
036:        import javax.faces.context.*;
037:
038:        public class HtmlOutputLabel extends UIOutput {
039:            public static final String COMPONENT_TYPE = "javax.faces.HtmlOutputLabel";
040:
041:            private static final HashMap<String, PropEnum> _propMap = new HashMap<String, PropEnum>();
042:
043:            private String _accesskey;
044:            private ValueExpression _accesskeyExpr;
045:
046:            private String _dir;
047:            private ValueExpression _dirExpr;
048:
049:            private Boolean _escape;
050:            private ValueExpression _escapeExpr;
051:
052:            private String _for;
053:            private ValueExpression _forExpr;
054:
055:            private String _lang;
056:            private ValueExpression _langExpr;
057:
058:            private String _onblur;
059:            private ValueExpression _onblurExpr;
060:
061:            private String _onclick;
062:            private ValueExpression _onclickExpr;
063:
064:            private String _ondblclick;
065:            private ValueExpression _ondblclickExpr;
066:
067:            private String _onfocus;
068:            private ValueExpression _onfocusExpr;
069:
070:            private String _onkeydown;
071:            private ValueExpression _onkeydownExpr;
072:
073:            private String _onkeypress;
074:            private ValueExpression _onkeypressExpr;
075:
076:            private String _onkeyup;
077:            private ValueExpression _onkeyupExpr;
078:
079:            private String _onmousedown;
080:            private ValueExpression _onmousedownExpr;
081:
082:            private String _onmousemove;
083:            private ValueExpression _onmousemoveExpr;
084:
085:            private String _onmouseout;
086:            private ValueExpression _onmouseoutExpr;
087:
088:            private String _onmouseover;
089:            private ValueExpression _onmouseoverExpr;
090:
091:            private String _onmouseup;
092:            private ValueExpression _onmouseupExpr;
093:
094:            private String _style;
095:            private ValueExpression _styleExpr;
096:
097:            private String _styleClass;
098:            private ValueExpression _styleClassExpr;
099:
100:            private String _tabindex;
101:            private ValueExpression _tabindexExpr;
102:
103:            private String _title;
104:            private ValueExpression _titleExpr;
105:
106:            public HtmlOutputLabel() {
107:                setRendererType("javax.faces.Label");
108:            }
109:
110:            //
111:            // properties
112:            //
113:
114:            public String getAccesskey() {
115:                if (_accesskey != null)
116:                    return _accesskey;
117:                else if (_accesskeyExpr != null)
118:                    return Util.evalString(_accesskeyExpr);
119:                else
120:                    return null;
121:            }
122:
123:            public void setAccesskey(String value) {
124:                _accesskey = value;
125:            }
126:
127:            public String getDir() {
128:                if (_dir != null)
129:                    return _dir;
130:                else if (_dirExpr != null)
131:                    return Util.evalString(_dirExpr);
132:                else
133:                    return null;
134:            }
135:
136:            public void setDir(String value) {
137:                _dir = value;
138:            }
139:
140:            public boolean isEscape() {
141:                if (_escape != null)
142:                    return _escape;
143:                else if (_escapeExpr != null)
144:                    return Util.evalBoolean(_escapeExpr);
145:                else
146:                    return false;
147:            }
148:
149:            public void setEscape(boolean value) {
150:                _escape = value;
151:            }
152:
153:            public String getFor() {
154:                if (_for != null)
155:                    return _for;
156:                else if (_forExpr != null)
157:                    return Util.evalString(_forExpr);
158:                else
159:                    return null;
160:            }
161:
162:            public void setFor(String value) {
163:                _for = value;
164:            }
165:
166:            public String getLang() {
167:                if (_lang != null)
168:                    return _lang;
169:                else if (_langExpr != null)
170:                    return Util.evalString(_langExpr);
171:                else
172:                    return null;
173:            }
174:
175:            public void setLang(String value) {
176:                _lang = value;
177:            }
178:
179:            public String getOnblur() {
180:                if (_onblur != null)
181:                    return _onblur;
182:                else if (_onblurExpr != null)
183:                    return Util.evalString(_onblurExpr);
184:                else
185:                    return null;
186:            }
187:
188:            public void setOnblur(String value) {
189:                _onblur = value;
190:            }
191:
192:            public String getOnclick() {
193:                if (_onclick != null)
194:                    return _onclick;
195:                else if (_onclickExpr != null)
196:                    return Util.evalString(_onclickExpr);
197:                else
198:                    return null;
199:            }
200:
201:            public void setOnclick(String value) {
202:                _onclick = value;
203:            }
204:
205:            public String getOndblclick() {
206:                if (_ondblclick != null)
207:                    return _ondblclick;
208:                else if (_ondblclickExpr != null)
209:                    return Util.evalString(_ondblclickExpr);
210:                else
211:                    return null;
212:            }
213:
214:            public void setOndblclick(String value) {
215:                _ondblclick = value;
216:            }
217:
218:            public String getOnfocus() {
219:                if (_onfocus != null)
220:                    return _onfocus;
221:                else if (_onfocusExpr != null)
222:                    return Util.evalString(_onfocusExpr);
223:                else
224:                    return null;
225:            }
226:
227:            public void setOnfocus(String value) {
228:                _onfocus = value;
229:            }
230:
231:            public String getOnkeydown() {
232:                if (_onkeydown != null)
233:                    return _onkeydown;
234:                else if (_onkeydownExpr != null)
235:                    return Util.evalString(_onkeydownExpr);
236:                else
237:                    return null;
238:            }
239:
240:            public void setOnkeydown(String value) {
241:                _onkeydown = value;
242:            }
243:
244:            public String getOnkeypress() {
245:                if (_onkeypress != null)
246:                    return _onkeypress;
247:                else if (_onkeypressExpr != null)
248:                    return Util.evalString(_onkeypressExpr);
249:                else
250:                    return null;
251:            }
252:
253:            public void setOnkeypress(String value) {
254:                _onkeypress = value;
255:            }
256:
257:            public String getOnkeyup() {
258:                if (_onkeyup != null)
259:                    return _onkeyup;
260:                else if (_onkeyupExpr != null)
261:                    return Util.evalString(_onkeyupExpr);
262:                else
263:                    return null;
264:            }
265:
266:            public void setOnkeyup(String value) {
267:                _onkeyup = value;
268:            }
269:
270:            public String getOnmousedown() {
271:                if (_onmousedown != null)
272:                    return _onmousedown;
273:                else if (_onmousedownExpr != null)
274:                    return Util.evalString(_onmousedownExpr);
275:                else
276:                    return null;
277:            }
278:
279:            public void setOnmousedown(String value) {
280:                _onmousedown = value;
281:            }
282:
283:            public String getOnmousemove() {
284:                if (_onmousemove != null)
285:                    return _onmousemove;
286:                else if (_onmousemoveExpr != null)
287:                    return Util.evalString(_onmousemoveExpr);
288:                else
289:                    return null;
290:            }
291:
292:            public void setOnmousemove(String value) {
293:                _onmousemove = value;
294:            }
295:
296:            public String getOnmouseout() {
297:                if (_onmouseout != null)
298:                    return _onmouseout;
299:                else if (_onmouseoutExpr != null)
300:                    return Util.evalString(_onmouseoutExpr);
301:                else
302:                    return null;
303:            }
304:
305:            public void setOnmouseout(String value) {
306:                _onmouseout = value;
307:            }
308:
309:            public String getOnmouseover() {
310:                if (_onmouseover != null)
311:                    return _onmouseover;
312:                else if (_onmouseoverExpr != null)
313:                    return Util.evalString(_onmouseoverExpr);
314:                else
315:                    return null;
316:            }
317:
318:            public void setOnmouseover(String value) {
319:                _onmouseover = value;
320:            }
321:
322:            public String getOnmouseup() {
323:                if (_onmouseup != null)
324:                    return _onmouseup;
325:                else if (_onmouseupExpr != null)
326:                    return Util.evalString(_onmouseupExpr);
327:                else
328:                    return null;
329:            }
330:
331:            public void setOnmouseup(String value) {
332:                _onmouseup = value;
333:            }
334:
335:            public String getStyle() {
336:                if (_style != null)
337:                    return _style;
338:                else if (_styleExpr != null)
339:                    return Util.evalString(_styleExpr);
340:                else
341:                    return null;
342:            }
343:
344:            public void setStyle(String value) {
345:                _style = value;
346:            }
347:
348:            public String getStyleClass() {
349:                if (_styleClass != null)
350:                    return _styleClass;
351:                else if (_styleClassExpr != null)
352:                    return Util.evalString(_styleClassExpr);
353:                else
354:                    return null;
355:            }
356:
357:            public void setStyleClass(String value) {
358:                _styleClass = value;
359:            }
360:
361:            public String getTabindex() {
362:                if (_tabindex != null)
363:                    return _tabindex;
364:                else if (_tabindexExpr != null)
365:                    return Util.evalString(_tabindexExpr);
366:                else
367:                    return null;
368:            }
369:
370:            public void setTabindex(String value) {
371:                _tabindex = value;
372:            }
373:
374:            public String getTitle() {
375:                if (_title != null)
376:                    return _title;
377:                else if (_titleExpr != null)
378:                    return Util.evalString(_titleExpr);
379:                else
380:                    return null;
381:            }
382:
383:            public void setTitle(String value) {
384:                _title = value;
385:            }
386:
387:            //
388:            // value expression override
389:            //
390:
391:            /**
392:             * Returns the value expression with the given name.
393:             */
394:            @Override
395:            public ValueExpression getValueExpression(String name) {
396:                PropEnum prop = _propMap.get(name);
397:
398:                if (prop != null) {
399:                    switch (prop) {
400:                    case ACCESSKEY:
401:                        return _accesskeyExpr;
402:                    case DIR:
403:                        return _dirExpr;
404:                    case ESCAPE:
405:                        return _escapeExpr;
406:                    case FOR:
407:                        return _forExpr;
408:                    case LANG:
409:                        return _langExpr;
410:                    case ONBLUR:
411:                        return _onblurExpr;
412:                    case ONCLICK:
413:                        return _onclickExpr;
414:                    case ONDBLCLICK:
415:                        return _ondblclickExpr;
416:                    case ONFOCUS:
417:                        return _onfocusExpr;
418:                    case ONKEYDOWN:
419:                        return _onkeydownExpr;
420:                    case ONKEYPRESS:
421:                        return _onkeypressExpr;
422:                    case ONKEYUP:
423:                        return _onkeyupExpr;
424:                    case ONMOUSEDOWN:
425:                        return _onmousedownExpr;
426:                    case ONMOUSEMOVE:
427:                        return _onmousemoveExpr;
428:                    case ONMOUSEOUT:
429:                        return _onmouseoutExpr;
430:                    case ONMOUSEOVER:
431:                        return _onmouseoverExpr;
432:                    case ONMOUSEUP:
433:                        return _onmouseupExpr;
434:                    case STYLE:
435:                        return _styleExpr;
436:                    case STYLE_CLASS:
437:                        return _styleClassExpr;
438:                    case TABINDEX:
439:                        return _tabindexExpr;
440:                    case TITLE:
441:                        return _titleExpr;
442:                    }
443:                }
444:
445:                return super .getValueExpression(name);
446:            }
447:
448:            /**
449:             * Sets the value expression with the given name.
450:             */
451:            @Override
452:            public void setValueExpression(String name, ValueExpression expr) {
453:                PropEnum prop = _propMap.get(name);
454:
455:                if (prop != null) {
456:                    switch (prop) {
457:                    case ACCESSKEY:
458:                        if (expr != null && expr.isLiteralText()) {
459:                            _accesskey = Util.evalString(expr);
460:                            return;
461:                        } else
462:                            _accesskeyExpr = expr;
463:                        break;
464:
465:                    case DIR:
466:                        if (expr != null && expr.isLiteralText()) {
467:                            _dir = Util.evalString(expr);
468:                            return;
469:                        } else
470:                            _dirExpr = expr;
471:                        break;
472:
473:                    case ESCAPE:
474:                        if (expr != null && expr.isLiteralText()) {
475:                            _escape = Util.evalBoolean(expr);
476:                            return;
477:                        } else
478:                            _escapeExpr = expr;
479:                        break;
480:
481:                    case FOR:
482:                        if (expr != null && expr.isLiteralText()) {
483:                            _for = Util.evalString(expr);
484:                            return;
485:                        } else
486:                            _forExpr = expr;
487:                        break;
488:
489:                    case LANG:
490:                        if (expr != null && expr.isLiteralText()) {
491:                            _lang = Util.evalString(expr);
492:                            return;
493:                        } else
494:                            _langExpr = expr;
495:                        break;
496:
497:                    case ONBLUR:
498:                        if (expr != null && expr.isLiteralText()) {
499:                            _onblur = Util.evalString(expr);
500:                            return;
501:                        } else
502:                            _onblurExpr = expr;
503:                        break;
504:
505:                    case ONCLICK:
506:                        if (expr != null && expr.isLiteralText()) {
507:                            _onclick = Util.evalString(expr);
508:                            return;
509:                        } else
510:                            _onclickExpr = expr;
511:                        break;
512:
513:                    case ONDBLCLICK:
514:                        if (expr != null && expr.isLiteralText()) {
515:                            _ondblclick = Util.evalString(expr);
516:                            return;
517:                        } else
518:                            _ondblclickExpr = expr;
519:                        break;
520:
521:                    case ONFOCUS:
522:                        if (expr != null && expr.isLiteralText()) {
523:                            _onfocus = Util.evalString(expr);
524:                            return;
525:                        } else
526:                            _onfocusExpr = expr;
527:                        break;
528:
529:                    case ONKEYDOWN:
530:                        if (expr != null && expr.isLiteralText()) {
531:                            _onkeydown = Util.evalString(expr);
532:                            return;
533:                        } else
534:                            _onkeydownExpr = expr;
535:                        break;
536:
537:                    case ONKEYPRESS:
538:                        if (expr != null && expr.isLiteralText()) {
539:                            _onkeypress = Util.evalString(expr);
540:                            return;
541:                        } else
542:                            _onkeypressExpr = expr;
543:                        break;
544:
545:                    case ONKEYUP:
546:                        if (expr != null && expr.isLiteralText()) {
547:                            _onkeyup = Util.evalString(expr);
548:                            return;
549:                        } else
550:                            _onkeyupExpr = expr;
551:                        break;
552:
553:                    case ONMOUSEDOWN:
554:                        if (expr != null && expr.isLiteralText()) {
555:                            _onmousedown = Util.evalString(expr);
556:                            return;
557:                        } else
558:                            _onmousedownExpr = expr;
559:                        break;
560:
561:                    case ONMOUSEMOVE:
562:                        if (expr != null && expr.isLiteralText()) {
563:                            _onmousemove = Util.evalString(expr);
564:                            return;
565:                        } else
566:                            _onmousemoveExpr = expr;
567:                        break;
568:
569:                    case ONMOUSEOUT:
570:                        if (expr != null && expr.isLiteralText()) {
571:                            _onmouseout = Util.evalString(expr);
572:                            return;
573:                        } else
574:                            _onmouseoutExpr = expr;
575:                        break;
576:
577:                    case ONMOUSEOVER:
578:                        if (expr != null && expr.isLiteralText()) {
579:                            _onmouseover = Util.evalString(expr);
580:                            return;
581:                        } else
582:                            _onmouseoverExpr = expr;
583:                        break;
584:
585:                    case ONMOUSEUP:
586:                        if (expr != null && expr.isLiteralText()) {
587:                            _onmouseup = Util.evalString(expr);
588:                            return;
589:                        } else
590:                            _onmouseupExpr = expr;
591:                        break;
592:
593:                    case STYLE:
594:                        if (expr != null && expr.isLiteralText()) {
595:                            _style = Util.evalString(expr);
596:                            return;
597:                        } else
598:                            _styleExpr = expr;
599:                        break;
600:
601:                    case STYLE_CLASS:
602:                        if (expr != null && expr.isLiteralText()) {
603:                            _styleClass = Util.evalString(expr);
604:                            return;
605:                        } else
606:                            _styleClassExpr = expr;
607:                        break;
608:
609:                    case TABINDEX:
610:                        if (expr != null && expr.isLiteralText()) {
611:                            _tabindex = Util.evalString(expr);
612:                            return;
613:                        } else
614:                            _tabindexExpr = expr;
615:                        break;
616:
617:                    case TITLE:
618:                        if (expr != null && expr.isLiteralText()) {
619:                            _title = Util.evalString(expr);
620:                            return;
621:                        } else
622:                            _titleExpr = expr;
623:                        break;
624:                    }
625:                }
626:
627:                super .setValueExpression(name, expr);
628:            }
629:
630:            //
631:            // state
632:            //
633:
634:            public Object saveState(FacesContext context) {
635:                Object parent = super .saveState(context);
636:
637:                return new Object[] { parent,
638:
639:                _accesskey, _dir, _escape, _for, _lang,
640:
641:                _onblur, _onclick, _ondblclick, _onfocus,
642:
643:                _onkeydown, _onkeypress, _onkeyup,
644:
645:                _onmousedown, _onmousemove, _onmouseout, _onmouseover,
646:                        _onmouseup,
647:
648:                        _style, _styleClass, _tabindex, _title, };
649:            }
650:
651:            public void restoreState(FacesContext context, Object value) {
652:                Object[] state = (Object[]) value;
653:
654:                int i = 0;
655:
656:                if (state != null)
657:                    super .restoreState(context, state[i++]);
658:
659:                _accesskey = (String) state[i++];
660:                _dir = (String) state[i++];
661:                _escape = (Boolean) state[i++];
662:                _for = (String) state[i++];
663:                _lang = (String) state[i++];
664:                _onblur = (String) state[i++];
665:                _onclick = (String) state[i++];
666:                _ondblclick = (String) state[i++];
667:                _onfocus = (String) state[i++];
668:                _onkeydown = (String) state[i++];
669:                _onkeypress = (String) state[i++];
670:                _onkeyup = (String) state[i++];
671:                _onmousedown = (String) state[i++];
672:                _onmousemove = (String) state[i++];
673:                _onmouseout = (String) state[i++];
674:                _onmouseover = (String) state[i++];
675:                _onmouseup = (String) state[i++];
676:                _style = (String) state[i++];
677:                _styleClass = (String) state[i++];
678:                _tabindex = (String) state[i++];
679:                _title = (String) state[i++];
680:            }
681:
682:            //
683:            // utility
684:            //
685:
686:            private enum PropEnum {
687:                ACCESSKEY, DIR, ESCAPE, FOR, LANG, ONBLUR, ONCLICK, ONDBLCLICK, ONFOCUS, ONKEYDOWN, ONKEYPRESS, ONKEYUP, ONMOUSEDOWN, ONMOUSEMOVE, ONMOUSEOUT, ONMOUSEOVER, ONMOUSEUP, STYLE, STYLE_CLASS, TABINDEX, TITLE,
688:            }
689:
690:            static {
691:                _propMap.put("accesskey", PropEnum.ACCESSKEY);
692:                _propMap.put("dir", PropEnum.DIR);
693:                _propMap.put("escape", PropEnum.ESCAPE);
694:                _propMap.put("for", PropEnum.FOR);
695:                _propMap.put("lang", PropEnum.LANG);
696:                _propMap.put("onblur", PropEnum.ONBLUR);
697:                _propMap.put("onclick", PropEnum.ONCLICK);
698:                _propMap.put("ondblclick", PropEnum.ONDBLCLICK);
699:                _propMap.put("onfocus", PropEnum.ONFOCUS);
700:                _propMap.put("onkeydown", PropEnum.ONKEYDOWN);
701:                _propMap.put("onkeypress", PropEnum.ONKEYPRESS);
702:                _propMap.put("onkeyup", PropEnum.ONKEYUP);
703:                _propMap.put("onmousedown", PropEnum.ONMOUSEDOWN);
704:                _propMap.put("onmousemove", PropEnum.ONMOUSEMOVE);
705:                _propMap.put("onmouseover", PropEnum.ONMOUSEOVER);
706:                _propMap.put("onmouseout", PropEnum.ONMOUSEOUT);
707:                _propMap.put("onmouseup", PropEnum.ONMOUSEUP);
708:                _propMap.put("style", PropEnum.STYLE);
709:                _propMap.put("styleClass", PropEnum.STYLE_CLASS);
710:                _propMap.put("tabindex", PropEnum.TABINDEX);
711:                _propMap.put("title", PropEnum.TITLE);
712:            }
713:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.