Java Doc for IMarkupSettings.java in  » J2EE » wicket » org » apache » wicket » settings » 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 » J2EE » wicket » org.apache.wicket.settings 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


org.apache.wicket.settings.IMarkupSettings

All known Subclasses:   org.apache.wicket.settings.Settings,
IMarkupSettings
public interface IMarkupSettings (Code)
Interface for markup related settings.

compressWhitespace (defaults to false) - Causes pages to render with redundant whitespace removed. Whitespace stripping is not HTML or JavaScript savvy and can conceivably break pages, but should provide significant performance improvements.

stripComments (defaults to false) - Set to true to strip HTML comments during markup loading
author:
   Igor Vaynberg (ivaynberg)





Method Summary
 booleangetAutomaticLinking()
     If true, automatic link resolution is enabled.
 booleangetCompressWhitespace()
    
 StringgetDefaultAfterDisabledLink()
    
 StringgetDefaultBeforeDisabledLink()
    
 StringgetDefaultMarkupEncoding()
    
since:
   1.1 Returns default encoding of markup files.
 IMarkupCachegetMarkupCache()
     The markup cache also loads the markup if not yet avaiable in the cache.
 IMarkupParserFactorygetMarkupParserFactory()
    
 booleangetStripComments()
    
 booleangetStripWicketTags()
     Gets whether to remove wicket tags from the output.
 booleangetStripXmlDeclarationFromOutput()
    
 voidsetAutomaticLinking(boolean automaticLinking)
     Application default for automatic link resolution.
 voidsetCompressWhitespace(boolean compressWhitespace)
     Turns on whitespace compression.
 voidsetDefaultAfterDisabledLink(String defaultAfterDisabledLink)
    
 voidsetDefaultBeforeDisabledLink(String defaultBeforeDisabledLink)
    
 voidsetDefaultMarkupEncoding(String encoding)
     Set default encoding for markup files.
 voidsetMarkupCache(IMarkupCache markupCache)
     Sets a new markup cache which will also be used to load markup if not yet available in the cache.
 voidsetMarkupParserFactory(IMarkupParserFactory factory)
     Sets the markup parser factory that will be used to generate parsers for markup.
 voidsetStripComments(boolean stripComments)
     Enables stripping of markup comments denoted in markup by HTML comment tagging.
 voidsetStripWicketTags(boolean stripWicketTags)
     Sets whether to remove wicket tags from the output.
 voidsetStripXmlDeclarationFromOutput(boolean strip)
    



Method Detail
getAutomaticLinking
boolean getAutomaticLinking()(Code)
If true, automatic link resolution is enabled. Disabled by default.
See Also:   org.apache.wicket.markup.resolver.AutoLinkResolver
See Also:   org.apache.wicket.markup.parser.filter.WicketLinkTagHandler Returns the automaticLinking.



getCompressWhitespace
boolean getCompressWhitespace()(Code)
Returns the compressWhitespace.
See Also:   IMarkupSettings.setCompressWhitespace(boolean)



getDefaultAfterDisabledLink
String getDefaultAfterDisabledLink()(Code)
Returns the defaultAfterDisabledLink.



getDefaultBeforeDisabledLink
String getDefaultBeforeDisabledLink()(Code)
Returns the defaultBeforeDisabledLink.



getDefaultMarkupEncoding
String getDefaultMarkupEncoding()(Code)

since:
   1.1 Returns default encoding of markup files. If null, the operatingsystem provided encoding will be used.



getMarkupCache
IMarkupCache getMarkupCache()(Code)
The markup cache also loads the markup if not yet avaiable in the cache. markup cache



getMarkupParserFactory
IMarkupParserFactory getMarkupParserFactory()(Code)
markup parser factory



getStripComments
boolean getStripComments()(Code)
Returns the stripComments.
See Also:   IMarkupSettings.setStripComments(boolean)



getStripWicketTags
boolean getStripWicketTags()(Code)
Gets whether to remove wicket tags from the output. whether to remove wicket tags from the output



getStripXmlDeclarationFromOutput
boolean getStripXmlDeclarationFromOutput()(Code)

since:
   1.1 if true, xml declaration will be removed.



setAutomaticLinking
void setAutomaticLinking(boolean automaticLinking)(Code)
Application default for automatic link resolution. Please
See Also:   org.apache.wicket.markup.resolver.AutoLinkResolver
See Also:    and
See Also:   org.apache.wicket.markup.parser.filter.WicketLinkTagHandler
See Also:    for more
See Also:   details.
Parameters:
  automaticLinking - The automaticLinking to set.



setCompressWhitespace
void setCompressWhitespace(boolean compressWhitespace)(Code)
Turns on whitespace compression. Multiple occurrences of space/tab characters will be compressed to a single space. Multiple line breaks newline/carriage-return will also be compressed to a single newline.

Compression is currently not HTML aware and so it may be possible for whitespace compression to break pages. For this reason, whitespace compression is off by default and you should test your application throroughly after turning whitespace compression on.

Spaces are removed from markup at markup load time and there should be no effect on page rendering speed. In fact, your pages should render faster with whitespace compression enabled.
Parameters:
  compressWhitespace - The compressWhitespace to set.




setDefaultAfterDisabledLink
void setDefaultAfterDisabledLink(String defaultAfterDisabledLink)(Code)

Parameters:
  defaultAfterDisabledLink - The defaultAfterDisabledLink to set.



setDefaultBeforeDisabledLink
void setDefaultBeforeDisabledLink(String defaultBeforeDisabledLink)(Code)

Parameters:
  defaultBeforeDisabledLink - The defaultBeforeDisabledLink to set.



setDefaultMarkupEncoding
void setDefaultMarkupEncoding(String encoding)(Code)
Set default encoding for markup files. If null, the encoding provided by the operating system will be used.
since:
   1.1
Parameters:
  encoding -



setMarkupCache
void setMarkupCache(IMarkupCache markupCache)(Code)
Sets a new markup cache which will also be used to load markup if not yet available in the cache.
Parameters:
  markupCache - new markup cache



setMarkupParserFactory
void setMarkupParserFactory(IMarkupParserFactory factory)(Code)
Sets the markup parser factory that will be used to generate parsers for markup. By default MarkupParserFactory will be used.
Parameters:
  factory - new factory



setStripComments
void setStripComments(boolean stripComments)(Code)
Enables stripping of markup comments denoted in markup by HTML comment tagging.
Parameters:
  stripComments - True to strip markup comments from rendered pages



setStripWicketTags
void setStripWicketTags(boolean stripWicketTags)(Code)
Sets whether to remove wicket tags from the output.
Parameters:
  stripWicketTags - whether to remove wicket tags from the output



setStripXmlDeclarationFromOutput
void setStripXmlDeclarationFromOutput(boolean strip)(Code)

since:
   1.1
Parameters:
  strip - if true, xml declaration will be stripped from output



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