Source Code Cross Referenced for FragmentIdentifierHandler.java in  » Graphic-Library » batik » org » apache » batik » parser » 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 » Graphic Library » batik » org.apache.batik.parser 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


01:        /*
02:
03:           Licensed to the Apache Software Foundation (ASF) under one or more
04:           contributor license agreements.  See the NOTICE file distributed with
05:           this work for additional information regarding copyright ownership.
06:           The ASF licenses this file to You under the Apache License, Version 2.0
07:           (the "License"); you may not use this file except in compliance with
08:           the License.  You may obtain a copy of the License at
09:
10:               http://www.apache.org/licenses/LICENSE-2.0
11:
12:           Unless required by applicable law or agreed to in writing, software
13:           distributed under the License is distributed on an "AS IS" BASIS,
14:           WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15:           See the License for the specific language governing permissions and
16:           limitations under the License.
17:
18:         */
19:        package org.apache.batik.parser;
20:
21:        /**
22:         * This interface must be implemented and then registred as the
23:         * handler of a <code>PreserveAspectRatioParser</code> instance
24:         * in order to be notified of parsing events.
25:         *
26:         * @author <a href="mailto:stephane@hillion.org">Stephane Hillion</a>
27:         * @version $Id: FragmentIdentifierHandler.java 475477 2006-11-15 22:44:28Z cam $
28:         */
29:        public interface FragmentIdentifierHandler extends
30:                PreserveAspectRatioHandler, TransformListHandler {
31:
32:            /**
33:             * Invoked when the fragment identifier starts.
34:             * @exception ParseException if an error occured while processing the
35:             *                           fragment identifier
36:             */
37:            void startFragmentIdentifier() throws ParseException;
38:
39:            /**
40:             * Invoked when an ID has been parsed.
41:             * @param s The string that represents the parsed ID.
42:             * @exception ParseException if an error occured while processing the
43:             *                           fragment identifier
44:             */
45:            void idReference(String s) throws ParseException;
46:
47:            /**
48:             * Invoked when 'viewBox(x,y,width,height)' has been parsed.
49:             * @param x x coordinate of the viewbox
50:             * @param y y coordinate of the viewbox
51:             * @param width width of the viewbox
52:             * @param height height of the viewbox
53:             * @exception ParseException if an error occured while processing the
54:             *                           fragment identifier
55:             */
56:            void viewBox(float x, float y, float width, float height)
57:                    throws ParseException;
58:
59:            /**
60:             * Invoked when a view target specification starts.
61:             * @exception ParseException if an error occured while processing the
62:             *                           fragment identifier
63:             */
64:            void startViewTarget() throws ParseException;
65:
66:            /**
67:             * Invoked when a identifier has been parsed within a view target
68:             * specification.
69:             * @param name the target name.
70:             * @exception ParseException if an error occured while processing the
71:             *                           fragment identifier
72:             */
73:            void viewTarget(String name) throws ParseException;
74:
75:            /**
76:             * Invoked when a view target specification ends.
77:             * @exception ParseException if an error occured while processing the
78:             *                           fragment identifier
79:             */
80:            void endViewTarget() throws ParseException;
81:
82:            /**
83:             * Invoked when a 'zoomAndPan' specification has been parsed.
84:             * @param magnify true if 'magnify' has been parsed.
85:             * @exception ParseException if an error occured while processing the
86:             *                           fragment identifier
87:             */
88:            void zoomAndPan(boolean magnify);
89:
90:            /**
91:             * Invoked when the fragment identifier ends.
92:             * @exception ParseException if an error occured while processing the
93:             *                           fragment identifier
94:             */
95:            void endFragmentIdentifier() throws ParseException;
96:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.