1 /*2 Copyright © 2006 Stefano Chizzolini. http://clown.stefanochizzolini.it3 4 Contributors:5 * Stefano Chizzolini (original code developer, info@stefanochizzolini.it):6 contributed code is Copyright © 2006 by Stefano Chizzolini.7 8 This file should be part of the source code distribution of "PDF Clown library"9 (the Program): see the accompanying README files for more info.10 11 This Program is free software; you can redistribute it and/or modify it under12 the terms of the GNU General Public License as published by the Free Software13 Foundation; either version 2 of the License, or (at your option) any later version.14 15 This Program is distributed in the hope that it will be useful, but WITHOUT ANY16 WARRANTY, either expressed or implied; without even the implied warranty of17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the License for more details.18 19 You should have received a copy of the GNU General Public License along with this20 Program (see README files); if not, go to the GNU website (http://www.gnu.org/).21 22 Redistribution and use, with or without modification, are permitted provided that such23 redistributions retain the above copyright notice, license and disclaimer, along with24 this list of conditions.25 */26 27 package it.stefanochizzolini.clown;28 29 public class Application30 {31 /*32 NOTE: Bibliographic reference syntax (XSBNF):33 biblioReference := { '[' publication ':' version ':' section ']' } // Bibliographic reference.34 publication := { letter+ } // Publication identifier.35 version := { digit+ { '.' digit+ }* } // Publication version.36 section := { chapterParagraph, appendixParagraph } // Publication section.37 chapterParagraph := { digit+ paragraph } // Chapter paragraph.38 appendixParagraph := { letter paragraph } // Appendix paragraph.39 paragraph := { { '.' digit+ }* } // Paragraph.40 NOTE: Bibliographic references:41 [AFM] Adobe Font Metrics File Format Specification, Adobe Systems Incorporated;42 [AGL] Adobe Glyph List, Adobe Systems Incorporated;43 [AGLFN] Adobe Glyph List For New Fonts, Adobe Systems Incorporated;44 [ISO 10918-1] JPEG Standard (DIGITAL COMPRESSION AND CODING OF CONTINUOUS-TONE STILL IMAGES);45 [ISO 216] Writing paper and certain classes of printed matter -- Trimmed sizes -- A and B series;46 [ISO 269] Correspondence envelopes -- Designation and sizes;47 [JFIF] JPEG File Interchange Format, Eric Hamilton (C-Cube Microsystems);48 [OTF] OpenType specification, Microsoft Corporation and Adobe Systems Incorporated;49 [PDF] PDF Reference, Adobe Portable Document Format, Adobe Systems Incorporated;50 */51 }