Java Doc for ClientSniffer.java in  » IDE-Netbeans » visualweb.api.designer » com » sun » rave » web » ui » util » 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 » IDE Netbeans » visualweb.api.designer » com.sun.rave.web.ui.util 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   com.sun.rave.web.ui.util.ClientSniffer

ClientSniffer
public class ClientSniffer (Code)
This utility class parses the user agent of a HttpServletRequest object to determine browser type, version, and platform.

The code of this utility class is based on "The Ultimate JavaScript Client Sniffer", version 3.03 which is located at the following URL.

http://www.mozilla.org/docs/web-developer/sniffer/browser_type.html

Usage Example:

 FacesContext context = FacesContext.getCurrentInstance();
 ClientSniffer cs = new ClientSniffer(context);
 String stylesheet = CCStyle.IE6_UP_CSS;
 if (isIe6up()) {
 stylesheet = CCStyle.IE6_UP_CSS;
 } else if (isIe5up()) {
 stylesheet = CCStyle.IE5_UP_CSS;
 } else if (isNav6up()) {
 stylesheet = CCStyle.NS6_UP_CSS;
 } else if (isNav4up() && isWin()) {
 stylesheet = CCStyle.NS4_WIN_CSS;
 } else if (isNav4up() && isSun()) {
 stylesheet = CCStyle.NS4_SOL_CSS;
 }
 


version:
   1.10 02/06/04
author:
   Sun Microsystems, Inc.




Constructor Summary
public  ClientSniffer(FacesContext context)
     Default constructor.

Method Summary
public static  ClientTypegetClientType(FacesContext context)
     This method is used by the Theme.
public static  ClientSniffergetInstance(FacesContext context)
    

This method gets an instance of this class associated with the given FacesContext.

public  StringgetUserAgent()
     Get the user agent.
public  intgetUserAgentMajor()
     Get the user agent major version number.
public  booleanisGecko()
     Test if the user agent was generated by Gecko engine.
public  booleanisIe()
     Test if the user agent was generated by Internet Explorer.
public  booleanisIe3()
     Test if the user agent was generated by Internet Explorer, version 3.x.
public  booleanisIe4()
     Test if the user agent was generated by Internet Explorer, version 4.x.
public  booleanisIe5()
     Test if the user agent was generated by Internet Explorer, version 5.x.
public  booleanisIe5up()
     Test if the user agent was generated by Internet Explorer, version 5.x or above.
public  booleanisIe6()
     Test if the user agent was generated by Internet Explorer, version 6.x.
public  booleanisIe6up()
     Test if the user agent was generated by Internet Explorer, version 6.x or above.
public  booleanisNav()
     Test if the user agent was generated by Navigator.
public  booleanisNav4()
     Test if the user agent was generated by Navigator, version 4.x.
public  booleanisNav4up()
     Test if the user agent was generated by Navigator, version 4.x or above.
public  booleanisNav6()
     Test if the user agent was generated by Navigator, version 6.x.
public  booleanisNav6up()
     Test if the user agent was generated by Navigator, version 6.x or above.
public  booleanisNav7()
     Test if the user agent was generated by Navigator, version 7.x.
public  booleanisNav70()
     Test if the user agent was generated by Navigator, version 7.0.
public  booleanisNav7up()
     Test if the user agent was generated by Navigator, version 7.x or above.
public  booleanisSun()
     Test if the user agent was generated on Sun platform.
public  booleanisWin()
     Test if the user agent was generated on Windows platform.
protected  voidsetUserAgent(FacesContext context)
    

This method initializes the user agent via the supplied FacesContext.



Constructor Detail
ClientSniffer
public ClientSniffer(FacesContext context)(Code)
Default constructor.
Parameters:
  context - FacesContext which should be used toextract the user agent.




Method Detail
getClientType
public static ClientType getClientType(FacesContext context)(Code)
This method is used by the Theme.
Parameters:
  context - The FacesContext The ClientType.



getInstance
public static ClientSniffer getInstance(FacesContext context)(Code)

This method gets an instance of this class associated with the given FacesContext. It will look in the request scope to see if an instance already exists, if not, it will create one.


Parameters:
  context - The FacesContext A ClientSniffer instance.



getUserAgent
public String getUserAgent()(Code)
Get the user agent. The user agent.



getUserAgentMajor
public int getUserAgentMajor()(Code)
Get the user agent major version number. The user agent major version number or-1 if the version number was not retrieved.



isGecko
public boolean isGecko()(Code)
Test if the user agent was generated by Gecko engine. true or false



isIe
public boolean isIe()(Code)
Test if the user agent was generated by Internet Explorer. true or false



isIe3
public boolean isIe3()(Code)
Test if the user agent was generated by Internet Explorer, version 3.x. true or false



isIe4
public boolean isIe4()(Code)
Test if the user agent was generated by Internet Explorer, version 4.x. true or false



isIe5
public boolean isIe5()(Code)
Test if the user agent was generated by Internet Explorer, version 5.x. true or false



isIe5up
public boolean isIe5up()(Code)
Test if the user agent was generated by Internet Explorer, version 5.x or above. true or false



isIe6
public boolean isIe6()(Code)
Test if the user agent was generated by Internet Explorer, version 6.x. true or false



isIe6up
public boolean isIe6up()(Code)
Test if the user agent was generated by Internet Explorer, version 6.x or above. true or false



isNav
public boolean isNav()(Code)
Test if the user agent was generated by Navigator. true or false



isNav4
public boolean isNav4()(Code)
Test if the user agent was generated by Navigator, version 4.x. true or false



isNav4up
public boolean isNav4up()(Code)
Test if the user agent was generated by Navigator, version 4.x or above. true or false



isNav6
public boolean isNav6()(Code)
Test if the user agent was generated by Navigator, version 6.x. true or false



isNav6up
public boolean isNav6up()(Code)
Test if the user agent was generated by Navigator, version 6.x or above. true or false



isNav7
public boolean isNav7()(Code)
Test if the user agent was generated by Navigator, version 7.x. true or false



isNav70
public boolean isNav70()(Code)
Test if the user agent was generated by Navigator, version 7.0. true or false



isNav7up
public boolean isNav7up()(Code)
Test if the user agent was generated by Navigator, version 7.x or above. true or false



isSun
public boolean isSun()(Code)
Test if the user agent was generated on Sun platform. true or false



isWin
public boolean isWin()(Code)
Test if the user agent was generated on Windows platform. true or false



setUserAgent
protected void setUserAgent(FacesContext context)(Code)

This method initializes the user agent via the supplied FacesContext. It will use the ExternalContext to get at the request header Map. It will use this Map to obtain the value for USER-AGENT.


Parameters:
  context - The FacesContext



Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.