de.schlund.pfixxml

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 » Pustefix » de.schlund.pfixxml 
de.schlund.pfixxml
Java Source File NameTypeComment
AbstractContextServletFilter.javaClass Abstract base class that can be used to derive a servlet filter that is aware of Pustefix's Context object.
AbstractXMLServlet.javaClass This class is at the top of the XML/XSLT System. It serves as an abstract parent class for all servlets needing access to the XML/XSL cache system povided by de.schlund.pfixxml.TargetGenerator.


Servlets inheriting from this class need to implement getDom(HttpServletRequest req, HttpServletResponse res) which returns a SPDocument.

AppContext.javaInterface
CacheStatisticServlet.javaClass
CacheValueLRUTest.javaClass
ConfigurableObject.javaInterface Classes which will get managed by the PropertyObjectManager have to implement this interface.
ContextXMLServlet.javaClass
DependencyTracker.javaClass
DependencyTrackerSaxon1.javaClass
DependencyTrackerSaxon2.javaClass
DerefServlet.javaClass This class implements a "Dereferer" servlet to get rid of Referer headers.
DirectOutputServlet.javaClass The DirectOutputServlet is a servlet that hijacks the de.schlund.pfixcore.workflow.Context of a comapnion ContextXMLServlet that runs in the same servlet session. It has no Context of it's own, but rather makes all the work itself, as there is no PageFlow handling involved. Instead of de.schlund.pfixcore.workflow.State s (as the Context of a ContextXMLServlet does) this kind of Servlet uses so called DirectOutputStates .
DocrootServlet.javaClass In standalone mode this servlet serves the static files from the docroot. In all modes, it serves files from the webapplication directory below /xml because they would usually be masked by the files within the docroot.
FactoryInitException.javaClass
FactoryInitServlet.javaClass This Servlet is just there to have it's init method called on startup of the VM.
FactoryInitUtil.javaClass
ImageGeometry.javaClass
ImageGeometryData.javaClass
ImageInfo.javaClass Get file format, image resolution, number of bits per pixel and optionally number of images from JPEG, GIF, BMP, PCX, PNG, IFF, RAS, PBM, PGM, PPM and PSD files (or input streams).

Use the class like this:

 ImageInfo ii = new ImageInfo();
 ii.setInput(in); // in can be InputStream or RandomAccessFile
 ii.setDetermineImageNumber(true); // default is false
 if (!ii.check()) {
 System.err.println("Not a supported image file format.");
 } else {
 System.out.println(ii.getFormatName() + ", " + ii.getMimeType() + 
 ", " + ii.getWidth() + " x " + ii.getHeight() + " pixels, " + 
 ii.getBitsPerPixel() + " bits per pixel, " + ii.getNumberOfImages() +
 " image(s).");
 }
 
You can also use this class as a command line program. Call it with a number of image file names as parameters:
 java ImageInfo *.jpg *.png *.gif
 
or call it without parameters and pipe data to it:
 cat image.jpg | java ImageInfo
 

Known limitations:

  • When the determination of the number of images is turned off, GIF bits per pixel are only read from the global header. For some GIFs, local palettes change this to a typically larger value.
ImageThemedSrc.javaClass Describe class ImageThemedSrc here.
ImageThemedSrcSaxon1.javaClass
ImageThemedSrcSaxon2.javaClass
IncludeDocument.javaClass IncludeDocument.java Created: 20021031
author:
   Joerg Haecker
author:
   This class encapsulates an include-module of the PUSTEFIX-system.
author:
   A IncludeDocument stores a Document created from a file.
IncludeDocumentExtension.javaClass IncludeDocumentExtension.java
author:
   Jens Lautenbacher
author:
   Joerg Haecker
author:
   This class is responsible to return the requested parts of anIncludeDocument
author:
   .
IncludeDocumentExtensionSaxon1.javaClass
IncludeDocumentExtensionSaxon2.javaClass
IncludeDocumentFactory.javaClass IncludeDocumentFactory.java Created: 20021029
author:
   Joerg Haecker
author:
   This class realises the factory and the singleton pattern.
JmxPortServlet.javaClass
PathFactory.javaClass Describe class PathFactory here.
PfixServletRequest.javaInterface
PfixServletRequestImpl.javaClass

This class is an abstraction of a servlet request.

ProjectInitFactory.javaClass Initializes the TargetGenerators of the projects on server startup.
PropertyObject.javaInterface Classes which will get managed by the PropertyObjectManager have to implement this interface.
PropertyObjectManager.javaClass This class manages shared objects, which are build from properties.
RenderingException.javaClass Signals an error that occured while AbstractXMLServlet was trying to render a page.
RequestParam.javaInterface
RequestParamType.javaClass
ResultDocument.javaClass
ServerContextStore.javaClass Stores context instances within a servlet context.
ServletManager.javaClass
ServletManagerCompat.javaClass This servlet is a compatibility layer for legacy servlets based on the old ServletManager.
SessionCleaner.javaClass The SessionCleaner class is used to remove stored SPDocuments from the session after a timout.
SessionContextStore.javaClass Stores context instances within a session.
SimpleRequestParam.javaClass
SPDocument.javaClass
Variant.javaClass Describe class Variant here.
XMLException.javaClass
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.