├── .gitignore ├── Activation └── JavaBeans™ Activation Framework Specification Version 1.1.pdf ├── Annotation ├── Common Annotations for the Java Platform 1.0.pdf └── annotations-1_0-edr-spec.pdf ├── Batch └── JSR_352-v1.0_Rev_a-Maintenance_Release.pdf ├── Bean Validation ├── JSR-303 Bean Validation 1.0 Final Release Specification.pdf ├── JSR-349 Bean Validation 1.1 Specification.pdf └── JSR-380 Bean Validation 2.0 Proposed Final Draft Specification.pdf ├── Blue Tooth └── jsr-82 │ ├── JABWT-Spec.pdf │ └── jsr82_1.1_javadocs.zip ├── CDI ├── Context and Dependency Injection 1.0(JSR-299).pdf ├── Contexts and Dependency Injection 2.0(JSR 365).pdf ├── Contexts and Dependency Injection-1.2.pdf └── Jakarta Contexts and Dependency Injection 3.0.pdf ├── Cache └── JSR-107 │ └── jcache-1.0.pdf ├── Common Annotations ├── Common Annotations 1.0.pdf └── Common Annotations 1.3.pdf ├── Concurrency └── JSR-133.pdf ├── DI ├── javax.inject-javadoc │ ├── allclasses-frame.html │ ├── allclasses-noframe.html │ ├── constant-values.html │ ├── deprecated-list.html │ ├── help-doc.html │ ├── index-all.html │ ├── index.html │ ├── javax │ │ └── inject │ │ │ ├── Inject.html │ │ │ ├── Named.html │ │ │ ├── Provider.html │ │ │ ├── Qualifier.html │ │ │ ├── Scope.html │ │ │ ├── Singleton.html │ │ │ ├── package-frame.html │ │ │ ├── package-summary.html │ │ │ └── package-tree.html │ ├── overview-tree.html │ ├── package-list │ ├── resources │ │ └── inherit.gif │ └── stylesheet.css └── javax.inject-src │ └── javax │ └── inject │ ├── Inject.java │ ├── Named.java │ ├── Provider.java │ ├── Qualifier.java │ ├── Scope.java │ ├── Singleton.java │ └── package-info.java ├── Date and Time └── datetime-1_0-fr-spec │ ├── allclasses-frame.html │ ├── allclasses-noframe.html │ ├── constant-values (1).html │ ├── constant-values.html │ ├── help-doc.html │ ├── index-all.html │ ├── index.html │ ├── java │ └── time │ │ ├── Clock.html │ │ ├── DateTimeException (1).html │ │ ├── DateTimeException.html │ │ ├── DayOfWeek.html │ │ ├── Duration.html │ │ ├── Instant.html │ │ ├── LocalDate.html │ │ ├── LocalDateTime.html │ │ ├── LocalTime.html │ │ ├── Month.html │ │ ├── MonthDay.html │ │ ├── OffsetDateTime.html │ │ ├── Period.html │ │ ├── Year.html │ │ ├── YearMonth.html │ │ ├── ZonedDateTime.html │ │ ├── chrono │ │ ├── AbstractChronology.html │ │ ├── ChronoLocalDate.html │ │ ├── ChronoLocalDateTime.html │ │ ├── ChronoPeriod.html │ │ ├── ChronoZonedDateTime.html │ │ ├── Chronology.html │ │ ├── Era.html │ │ ├── HijrahChronology.html │ │ ├── HijrahDate.html │ │ ├── HijrahEra.html │ │ ├── IsoChronology.html │ │ ├── IsoEra.html │ │ ├── JapaneseChronology.html │ │ ├── JapaneseDate.html │ │ ├── JapaneseEra.html │ │ ├── MinguoChronology.html │ │ ├── MinguoDate.html │ │ ├── MinguoEra.html │ │ ├── ThaiBuddhistChronology.html │ │ ├── ThaiBuddhistDate.html │ │ ├── ThaiBuddhistEra.html │ │ ├── class-use │ │ │ ├── AbstractChronology.html │ │ │ ├── ChronoLocalDate.html │ │ │ ├── ChronoLocalDateTime.html │ │ │ ├── ChronoPeriod.html │ │ │ ├── ChronoZonedDateTime.html │ │ │ ├── Chronology.html │ │ │ ├── Era.html │ │ │ ├── HijrahChronology.html │ │ │ ├── HijrahDate.html │ │ │ ├── HijrahEra.html │ │ │ ├── IsoChronology.html │ │ │ ├── IsoEra.html │ │ │ ├── JapaneseChronology.html │ │ │ ├── JapaneseDate.html │ │ │ ├── JapaneseEra.html │ │ │ ├── MinguoChronology.html │ │ │ ├── MinguoDate.html │ │ │ ├── MinguoEra.html │ │ │ ├── ThaiBuddhistChronology.html │ │ │ ├── ThaiBuddhistDate.html │ │ │ └── ThaiBuddhistEra.html │ │ ├── package-frame.html │ │ ├── package-summary.html │ │ ├── package-tree.html │ │ └── package-use.html │ │ ├── class-use │ │ ├── Clock.html │ │ ├── DateTimeException.html │ │ ├── DayOfWeek.html │ │ ├── Duration.html │ │ ├── Instant.html │ │ ├── LocalDate.html │ │ ├── LocalDateTime.html │ │ ├── LocalTime.html │ │ ├── Month.html │ │ ├── MonthDay.html │ │ ├── OffsetDateTime.html │ │ ├── OffsetTime.html │ │ ├── Period.html │ │ ├── Year.html │ │ ├── YearMonth.html │ │ ├── ZoneId.html │ │ ├── ZoneOffset.html │ │ └── ZonedDateTime.html │ │ ├── format │ │ ├── DateTimeFormatter.html │ │ ├── DateTimeFormatterBuilder.html │ │ ├── DateTimeParseException.html │ │ ├── DecimalStyle.html │ │ ├── FormatStyle.html │ │ ├── ResolverStyle.html │ │ ├── SignStyle.html │ │ ├── TextStyle.html │ │ ├── class-use │ │ │ ├── DateTimeFormatter.html │ │ │ ├── DateTimeFormatterBuilder.html │ │ │ ├── DateTimeParseException.html │ │ │ ├── DecimalStyle.html │ │ │ ├── FormatStyle.html │ │ │ ├── ResolverStyle.html │ │ │ ├── SignStyle.html │ │ │ └── TextStyle.html │ │ ├── package-frame.html │ │ ├── package-summary.html │ │ ├── package-tree.html │ │ └── package-use.html │ │ ├── package-frame (1).html │ │ ├── package-frame.html │ │ ├── package-summary.html │ │ ├── package-tree.html │ │ ├── package-use.html │ │ ├── temporal │ │ ├── ChronoField.html │ │ ├── ChronoUnit.html │ │ ├── IsoFields.html │ │ ├── JulianFields.html │ │ ├── Temporal.html │ │ ├── TemporalAccessor.html │ │ ├── TemporalAdjuster.html │ │ ├── TemporalAdjusters.html │ │ ├── TemporalAmount.html │ │ ├── TemporalField.html │ │ ├── TemporalQueries.html │ │ ├── TemporalQuery.html │ │ ├── TemporalUnit.html │ │ ├── UnsupportedTemporalTypeException.html │ │ ├── ValueRange.html │ │ ├── WeekFields.html │ │ ├── class-use │ │ │ ├── ChronoField.html │ │ │ ├── ChronoUnit.html │ │ │ ├── IsoFields.html │ │ │ ├── JulianFields.html │ │ │ ├── Temporal.html │ │ │ ├── TemporalAccessor.html │ │ │ ├── TemporalAdjuster.html │ │ │ ├── TemporalAdjusters.html │ │ │ ├── TemporalAmount.html │ │ │ ├── TemporalField.html │ │ │ ├── TemporalQueries.html │ │ │ ├── TemporalQuery.html │ │ │ ├── TemporalUnit.html │ │ │ ├── UnsupportedTemporalTypeException.html │ │ │ ├── ValueRange.html │ │ │ └── WeekFields.html │ │ ├── package-frame.html │ │ ├── package-summary.html │ │ ├── package-tree.html │ │ └── package-use.html │ │ └── zone │ │ ├── ZoneOffsetTransition.html │ │ ├── ZoneOffsetTransitionRule.TimeDefinition.html │ │ ├── ZoneOffsetTransitionRule.html │ │ ├── ZoneRules.html │ │ ├── ZoneRulesException.html │ │ ├── ZoneRulesProvider.html │ │ ├── class-use │ │ ├── ZoneOffsetTransition.html │ │ ├── ZoneOffsetTransitionRule.TimeDefinition.html │ │ ├── ZoneOffsetTransitionRule.html │ │ ├── ZoneRules.html │ │ ├── ZoneRulesException.html │ │ └── ZoneRulesProvider.html │ │ ├── package-frame.html │ │ ├── package-summary.html │ │ ├── package-tree.html │ │ └── package-use.html │ ├── overview-frame.html │ ├── overview-summary (1).html │ ├── overview-summary.html │ ├── overview-tree.html │ ├── package-list │ ├── script.js │ ├── serialized-form.html │ └── stylesheet.css ├── EE ├── Java 2 Platform Enterprise Edition Specification 1.4.pdf ├── Java Authorization Contract for Containers.pdf ├── Java Platform, Enterprise Edition (Java EE) Specification 5.pdf ├── JavaTM 2 Platform Enterprise Edition Management Specification 1.0.pdf ├── JavaTM 2EnterpriseEdition J2EE Connector Architecture Speci%3Fcation.pdf ├── JavaTM Enterprise Edition 5 Deployment API Specification, Version 1.2.pdf ├── connector_1_6-1_0-pr-spec.pdf ├── jta-1_1-spec.pdf └── msa-0_19-pr-spec.pdf ├── EJB ├── Enterprise JavaBeans 3.0 Core Contracts and Requirements.pdf ├── Enterprise JavaBeans Specification 1.1.pdf ├── Enterprise JavaBeans Specification 2.0.pdf ├── Enterprise JavaBeans Specification 2.1.pdf ├── Enterprise JavaBeans Specification 3.0 EJB Core.pdf ├── Enterprise JavaBeans Specification 3.0 Persistence.pdf └── Enterprise JavaBeans Specification 3.0 Simplified API.pdf ├── EL └── Expression Language Speci Fcation Version 2.1.pdf ├── Image └── Programming in Java Advanced Imaging.pdf ├── Interceptors └── JSR-318-Interceptors.pdf ├── JAXB └── The Java Architecture for XML Binding (JAXB) 2.0.pdf ├── JDBC ├── JDBC 4.0 Specification.pdf └── jdbc4.1-fr-spec.pdf ├── JDO ├── JavaTM Data Objects 2.0.pdf ├── JavaTM Data Objects 2.1 2007-10-17.pdf └── jdo-1_0_1-spec.pdf ├── JLS ├── JSR-337 Java Language Specfication.pdf ├── JSR-901 Java Language Specification.pdf └── Java Language Specification Third Edition.pdf ├── JMS ├── JSR-343 JMS 2.0 rev A Specification.pdf └── Java Message Service 1.1-fr-spec.pdf ├── JMX ├── Java Management Extensions 1.0.pdf ├── Java Management Extensions 1.2.pdf └── Java Management Extensions 1.4.pdf ├── JNLP ├── a.html ├── app-resources.html ├── b.html ├── c.html ├── d.html ├── download.html ├── images │ ├── NewLogoLarge.gif │ ├── jnlp-file-overview.gif │ ├── jnlp-spec-1.0.1-fcs-TEST_sdw_1b5e7558.gif │ ├── jnlp-spec-1.0.1-fcs-TEST_sdw_21fb274a.gif │ ├── jnlp-spec-1.0.1-fcs-TEST_sdw_23feb2e9.gif │ ├── jnlp-spec-1.0.1-fcs-TEST_sdw_337804a9.gif │ ├── jnlp-spec-1.0.1-fcs-TEST_sdw_3436c034.gif │ ├── jnlp-spec-1.0.1-fcs-TEST_sdw_34a110b.gif │ ├── jnlp-spec-1.0.1-fcs-TEST_sdw_40f3640e.gif │ ├── jnlp-spec-1.0.1-fcs-TEST_sdw_5d9e2978.gif │ ├── jnlp-spec-1.0.1-fcs-TEST_sdw_60acc15.gif │ ├── jnlp-spec-1.0.1-fcs-TEST_sdw_668d1ae6.gif │ ├── jnlp-spec-1.0.1-fcs-TEST_sdw_720e2b7d.gif │ ├── jnlp-spec-1.0.1-fcs-TEST_sdw_m19aacb89.gif │ ├── jnlp-spec-1.0.1-fcs-TEST_sdw_m1a4738e9.gif │ ├── jnlp-spec-1.0.1-fcs-TEST_sdw_m273c1b7c.jpg │ ├── jnlp-spec-1.0.1-fcs-TEST_sdw_m29edaa65.gif │ ├── jnlp-spec-1.0.1-fcs-TEST_sdw_m2f1e9a53.gif │ ├── jnlp-spec-1.0.1-fcs-TEST_sdw_m31437ea4.gif │ ├── jnlp-spec-1.0.1-fcs-TEST_sdw_m32d660f1.gif │ ├── jnlp-spec-1.0.1-fcs-TEST_sdw_m34bc04b8.gif │ ├── jnlp-spec-1.0.1-fcs-TEST_sdw_m3d3e0f71.gif │ ├── jnlp-spec-1.0.1-fcs-TEST_sdw_m5cd51518.gif │ ├── jnlp-spec-1.0.1-fcs-TEST_sdw_m5e68df4b.gif │ ├── jnlp-spec-1.0.1-fcs-TEST_sdw_m5fc6bde1.gif │ ├── jnlp-spec-1.0.1-fcs-TEST_sdw_m60e4703e.gif │ ├── jnlp-spec-1.0.1-fcs-TEST_sdw_m6c3b7953.gif │ ├── jnlp-spec-1.0.1-fcs-TEST_sdw_m6f3ac421.gif │ ├── jnlp-spec-1.0.1-fcs-TEST_sdw_m73d3a86f.gif │ ├── jnlp-spec-1.0.1-fcs-TEST_sdw_m781c04f5.gif │ ├── jnlp-spec-1.0.1-fcs-TEST_sdw_m7d366ad.gif │ └── jnlp-spec-1.0.1-fcs-TEST_sdw_m9cfa9dc.gif ├── index.html ├── jnlp-api.html ├── jnlp-file.html ├── launch.html ├── notes.html ├── notice.html ├── overview.html ├── preface.html ├── terms.html └── toc.html ├── JPA ├── Enterprise JavaBeans 3.0 Java Persistence API.pdf └── Java Persistence API 2.0-final-spec.pdf ├── JSF ├── JavaServer Faces Specification 1.2-mrel-spec.pdf └── jsf-2.0-pr-spec.pdf ├── JSP ├── jsp-2_1-fr-spec-el.pdf └── jsp-2_1-fr-spec.pdf ├── JSTL ├── JavaServer Pages Standard Tag Library 1.2 mrel2-spec.pdf └── jstl-1_2-mrel2-spec.pdf ├── JTA ├── Java Transaction API 1.0.1.pdf └── Java Transaction API 1.2.pdf ├── JTS └── Java Transaction Service (JTS) 1.0.pdf ├── JVM ├── The Java Virtual Machine Specification, Java SE 10 Edition.pdf ├── The Java Virtual Machine Specification, Java SE 11 Edition.pdf ├── The Java Virtual Machine Specification, Java SE 12 Edition.pdf ├── The Java Virtual Machine Specification, Java SE 7 Edition.pdf ├── The Java Virtual Machine Specification, Java SE 8 Edition.pdf └── The Java Virtual Machine Specification, Java SE 9 Edition.pdf ├── Java Beans └── Java Beans Specification 1.01.pdf ├── Lang ├── The Java Language Specification Java SE 10 Edition.pdf ├── The Java Language Specification Java SE 11 Edition.pdf ├── The Java Language Specification Java SE 12 Edition.pdf ├── The Java Language Specification Java SE 7 Edition.pdf ├── The Java Language Specification Java SE 8 Edition.pdf ├── The Java Language Specification Java SE 9 Edition.pdf └── The Java Language Specification Third Edition.pdf ├── Mail ├── JavaMail-1.4.pdf └── Providers.pdf ├── Portlet ├── PortletSpec3-Draft1-20151005.pdf └── portlet-1_0-fr-spec.pdf ├── REST ├── JAX-RS Java API for RESTful Web Services 1.0.pdf ├── JAX-RS Java API for RESTful Web Services 1.1.pdf ├── JAX-RS Java API for RESTful Web Services 2.0.pdf └── JAX-RS Java API for RESTful Web Services 2.1.pdf ├── RealTime ├── Java RealTime 1.0.2 spec │ ├── AlteredStdJava.html │ ├── JSR 1 FCS Eval license MREL.html │ ├── JSR 1 FCS Full License MREL.html │ ├── MinimumRequirements.html │ ├── acknowledgments.html │ ├── allChapters-frame.html │ ├── async_allclasses-frame.html │ ├── async_index.html │ ├── async_overview-summary.html │ ├── authors.html │ ├── changes.html │ ├── deprecated-list.html │ ├── design.html │ ├── exceptions_allclasses-frame.html │ ├── exceptions_index.html │ ├── exceptions_overview-summary.html │ ├── foreword.html │ ├── foreword2.html │ ├── hrtime_allclasses-frame.html │ ├── hrtime_index.html │ ├── hrtime_overview-summary.html │ ├── index.html │ ├── introduction.html │ ├── javax │ │ └── realtime │ │ │ ├── AbsoluteTime.html │ │ │ ├── AperiodicParameters.html │ │ │ ├── ArrivalTimeQueueOverflowException.html │ │ │ ├── AsyncEvent.html │ │ │ ├── AsyncEventHandler.html │ │ │ ├── AsynchronouslyInterruptedException.html │ │ │ ├── BoundAsyncEventHandler.html │ │ │ ├── CeilingViolationException.html │ │ │ ├── Clock.html │ │ │ ├── DuplicateFilterException.html │ │ │ ├── EventNotFoundException.html │ │ │ ├── GarbageCollector.html │ │ │ ├── HandlerNotFoundException.html │ │ │ ├── HeapMemory.html │ │ │ ├── HighResolutionTime.html │ │ │ ├── IllegalAssignmentError.html │ │ │ ├── ImmortalMemory.html │ │ │ ├── ImmortalPhysicalMemory.html │ │ │ ├── ImportanceParameters.html │ │ │ ├── InaccessibleAreaException.html │ │ │ ├── Interruptible.html │ │ │ ├── LTMemory.html │ │ │ ├── LTPhysicalMemory.html │ │ │ ├── MITViolationException.html │ │ │ ├── MemoryAccessError.html │ │ │ ├── MemoryArea.html │ │ │ ├── MemoryInUseException.html │ │ │ ├── MemoryParameters.html │ │ │ ├── MemoryScopeException.html │ │ │ ├── MemoryTypeConflictException.html │ │ │ ├── MonitorControl.html │ │ │ ├── NoHeapRealtimeThread.html │ │ │ ├── OffsetOutOfBoundsException.html │ │ │ ├── OneShotTimer.html │ │ │ ├── POSIXSignalHandler.html │ │ │ ├── PeriodicParameters.html │ │ │ ├── PeriodicTimer.html │ │ │ ├── PhysicalMemoryManager.html │ │ │ ├── PhysicalMemoryTypeFilter.html │ │ │ ├── PriorityCeilingEmulation.html │ │ │ ├── PriorityInheritance.html │ │ │ ├── PriorityParameters.html │ │ │ ├── PriorityScheduler.html │ │ │ ├── ProcessingGroupParameters.html │ │ │ ├── RationalTime.html │ │ │ ├── RawMemoryAccess.html │ │ │ ├── RawMemoryFloatAccess.html │ │ │ ├── RealtimeSecurity.html │ │ │ ├── RealtimeSystem.html │ │ │ ├── RealtimeThread.html │ │ │ ├── RelativeTime.html │ │ │ ├── ReleaseParameters.html │ │ │ ├── ResourceLimitError.html │ │ │ ├── Schedulable.html │ │ │ ├── Scheduler.html │ │ │ ├── SchedulingParameters.html │ │ │ ├── ScopedCycleException.html │ │ │ ├── ScopedMemory.html │ │ │ ├── SizeEstimator.html │ │ │ ├── SizeOutOfBoundsException.html │ │ │ ├── SporadicParameters.html │ │ │ ├── ThrowBoundaryError.html │ │ │ ├── Timed.html │ │ │ ├── Timer.html │ │ │ ├── UnknownHappeningException.html │ │ │ ├── UnsupportedPhysicalMemoryException.html │ │ │ ├── VTMemory.html │ │ │ ├── VTPhysicalMemory.html │ │ │ ├── WaitFreeDequeue.html │ │ │ ├── WaitFreeReadQueue.html │ │ │ ├── WaitFreeWriteQueue.html │ │ │ ├── doc-files │ │ │ └── timers_state_machine.gif │ │ │ ├── package-frame.html │ │ │ ├── package-summary.html │ │ │ ├── package-tree.html │ │ │ └── resources │ │ │ ├── .DS_Store │ │ │ └── inherit.gif │ ├── mem_allclasses-frame.html │ ├── mem_index.html │ ├── mem_overview-summary.html │ ├── preface.html │ ├── preface2.html │ ├── resources │ │ └── inherit.gif │ ├── sched_allclasses-frame.html │ ├── sched_index.html │ ├── sched_overview-summary.html │ ├── stylesheet.css │ ├── sync_allclasses-frame.html │ ├── sync_index.html │ ├── sync_overview-summary.html │ ├── system_allclasses-frame.html │ ├── system_index.html │ ├── system_overview-summary.html │ ├── threads_allclasses-frame.html │ ├── threads_index.html │ ├── threads_overview-summary.html │ ├── timers_allclasses-frame.html │ ├── timers_index.html │ └── timers_overview-summary.html └── realtime-1_0_2-mrel2-spec │ ├── acknowledgments.html │ ├── allChapters-frame.html │ ├── async_allclasses-frame.html │ ├── async_index.html │ ├── exceptions_allclasses-frame.html │ ├── exceptions_index.html │ ├── exceptions_overview-summary.html │ ├── hrtime_allclasses-frame.html │ ├── hrtime_index.html │ ├── index.html │ ├── javax │ └── realtime │ │ └── resources │ │ ├── .DS_Store │ │ └── inherit.gif │ ├── mem_allclasses-frame.html │ ├── mem_index.html │ ├── resources │ └── inherit.gif │ ├── sched_allclasses-frame.html │ ├── sched_index.html │ ├── stylesheet.css │ ├── sync_allclasses-frame.html │ ├── sync_index.html │ ├── system_allclasses-frame.html │ ├── system_index.html │ ├── threads_allclasses-frame.html │ ├── threads_index.html │ ├── timers_allclasses-frame.html │ └── timers_index.html ├── SAX └── jsr173_1.0.pdf ├── SIP Servlet └── sipservlet-2_0-fr-spec.pdf ├── SOAP ├── SOAP with Attachments API for Java(SAAJ) 1.3 changebars-mrel-spec.pdf └── SOAP with Attachments API for Java(SAAJ) 1.3 mrel-spec.pdf ├── Servlet ├── JSR-369 Java Servlet 4.0 Specification.pdf ├── servlet-2_3-final.pdf ├── servlet-2_4.pdf ├── servlet-3_0 final-spec.pdf ├── servlet-3_0-mrel-spec.pdf ├── servlet-3_1-final.pdf └── servlet-4_0_FINAL.pdf ├── Specifications.txt ├── WSDL └── Java APIs for WSDL(JWSDL) 1.2 mrel2-spec.pdf ├── Web Services Metadata ├── JSR-000181 Web Services Metadata-2.1-MR.pdf └── Web Services Metadata for the Java Platform 1.0.pdf ├── Web Services ├── JSR-370 Java API for RESTful Web Services .pdf ├── The Java API for XML-Based Web Services(JAX-WS) 2.0.pdf └── Web Services for Java EE 1.2.pdf ├── WebSocket └── websocket-1.1-maintenance-release-final.pdf ├── XML └── Java API for XML-based RPC JAX-RPC 1.1.pdf └── XQJ └── XQJ_spec_v1.0_PFD_20071029.pdf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/.gitignore -------------------------------------------------------------------------------- /Activation/JavaBeans™ Activation Framework Specification Version 1.1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Activation/JavaBeans™ Activation Framework Specification Version 1.1.pdf -------------------------------------------------------------------------------- /Annotation/Common Annotations for the Java Platform 1.0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Annotation/Common Annotations for the Java Platform 1.0.pdf -------------------------------------------------------------------------------- /Annotation/annotations-1_0-edr-spec.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Annotation/annotations-1_0-edr-spec.pdf -------------------------------------------------------------------------------- /Batch/JSR_352-v1.0_Rev_a-Maintenance_Release.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Batch/JSR_352-v1.0_Rev_a-Maintenance_Release.pdf -------------------------------------------------------------------------------- /Bean Validation/JSR-303 Bean Validation 1.0 Final Release Specification.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Bean Validation/JSR-303 Bean Validation 1.0 Final Release Specification.pdf -------------------------------------------------------------------------------- /Bean Validation/JSR-349 Bean Validation 1.1 Specification.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Bean Validation/JSR-349 Bean Validation 1.1 Specification.pdf -------------------------------------------------------------------------------- /Bean Validation/JSR-380 Bean Validation 2.0 Proposed Final Draft Specification.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Bean Validation/JSR-380 Bean Validation 2.0 Proposed Final Draft Specification.pdf -------------------------------------------------------------------------------- /Blue Tooth/jsr-82/JABWT-Spec.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Blue Tooth/jsr-82/JABWT-Spec.pdf -------------------------------------------------------------------------------- /Blue Tooth/jsr-82/jsr82_1.1_javadocs.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Blue Tooth/jsr-82/jsr82_1.1_javadocs.zip -------------------------------------------------------------------------------- /CDI/Context and Dependency Injection 1.0(JSR-299).pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/CDI/Context and Dependency Injection 1.0(JSR-299).pdf -------------------------------------------------------------------------------- /CDI/Contexts and Dependency Injection 2.0(JSR 365).pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/CDI/Contexts and Dependency Injection 2.0(JSR 365).pdf -------------------------------------------------------------------------------- /CDI/Contexts and Dependency Injection-1.2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/CDI/Contexts and Dependency Injection-1.2.pdf -------------------------------------------------------------------------------- /CDI/Jakarta Contexts and Dependency Injection 3.0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/CDI/Jakarta Contexts and Dependency Injection 3.0.pdf -------------------------------------------------------------------------------- /Cache/JSR-107/jcache-1.0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Cache/JSR-107/jcache-1.0.pdf -------------------------------------------------------------------------------- /Common Annotations/Common Annotations 1.0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Common Annotations/Common Annotations 1.0.pdf -------------------------------------------------------------------------------- /Common Annotations/Common Annotations 1.3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Common Annotations/Common Annotations 1.3.pdf -------------------------------------------------------------------------------- /Concurrency/JSR-133.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Concurrency/JSR-133.pdf -------------------------------------------------------------------------------- /DI/javax.inject-javadoc/allclasses-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/DI/javax.inject-javadoc/allclasses-frame.html -------------------------------------------------------------------------------- /DI/javax.inject-javadoc/allclasses-noframe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/DI/javax.inject-javadoc/allclasses-noframe.html -------------------------------------------------------------------------------- /DI/javax.inject-javadoc/constant-values.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/DI/javax.inject-javadoc/constant-values.html -------------------------------------------------------------------------------- /DI/javax.inject-javadoc/deprecated-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/DI/javax.inject-javadoc/deprecated-list.html -------------------------------------------------------------------------------- /DI/javax.inject-javadoc/help-doc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/DI/javax.inject-javadoc/help-doc.html -------------------------------------------------------------------------------- /DI/javax.inject-javadoc/index-all.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/DI/javax.inject-javadoc/index-all.html -------------------------------------------------------------------------------- /DI/javax.inject-javadoc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/DI/javax.inject-javadoc/index.html -------------------------------------------------------------------------------- /DI/javax.inject-javadoc/javax/inject/Inject.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/DI/javax.inject-javadoc/javax/inject/Inject.html -------------------------------------------------------------------------------- /DI/javax.inject-javadoc/javax/inject/Named.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/DI/javax.inject-javadoc/javax/inject/Named.html -------------------------------------------------------------------------------- /DI/javax.inject-javadoc/javax/inject/Provider.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/DI/javax.inject-javadoc/javax/inject/Provider.html -------------------------------------------------------------------------------- /DI/javax.inject-javadoc/javax/inject/Qualifier.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/DI/javax.inject-javadoc/javax/inject/Qualifier.html -------------------------------------------------------------------------------- /DI/javax.inject-javadoc/javax/inject/Scope.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/DI/javax.inject-javadoc/javax/inject/Scope.html -------------------------------------------------------------------------------- /DI/javax.inject-javadoc/javax/inject/Singleton.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/DI/javax.inject-javadoc/javax/inject/Singleton.html -------------------------------------------------------------------------------- /DI/javax.inject-javadoc/javax/inject/package-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/DI/javax.inject-javadoc/javax/inject/package-frame.html -------------------------------------------------------------------------------- /DI/javax.inject-javadoc/javax/inject/package-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/DI/javax.inject-javadoc/javax/inject/package-summary.html -------------------------------------------------------------------------------- /DI/javax.inject-javadoc/javax/inject/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/DI/javax.inject-javadoc/javax/inject/package-tree.html -------------------------------------------------------------------------------- /DI/javax.inject-javadoc/overview-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/DI/javax.inject-javadoc/overview-tree.html -------------------------------------------------------------------------------- /DI/javax.inject-javadoc/package-list: -------------------------------------------------------------------------------- 1 | javax.inject 2 | -------------------------------------------------------------------------------- /DI/javax.inject-javadoc/resources/inherit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/DI/javax.inject-javadoc/resources/inherit.gif -------------------------------------------------------------------------------- /DI/javax.inject-javadoc/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/DI/javax.inject-javadoc/stylesheet.css -------------------------------------------------------------------------------- /DI/javax.inject-src/javax/inject/Inject.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/DI/javax.inject-src/javax/inject/Inject.java -------------------------------------------------------------------------------- /DI/javax.inject-src/javax/inject/Named.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/DI/javax.inject-src/javax/inject/Named.java -------------------------------------------------------------------------------- /DI/javax.inject-src/javax/inject/Provider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/DI/javax.inject-src/javax/inject/Provider.java -------------------------------------------------------------------------------- /DI/javax.inject-src/javax/inject/Qualifier.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/DI/javax.inject-src/javax/inject/Qualifier.java -------------------------------------------------------------------------------- /DI/javax.inject-src/javax/inject/Scope.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/DI/javax.inject-src/javax/inject/Scope.java -------------------------------------------------------------------------------- /DI/javax.inject-src/javax/inject/Singleton.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/DI/javax.inject-src/javax/inject/Singleton.java -------------------------------------------------------------------------------- /DI/javax.inject-src/javax/inject/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/DI/javax.inject-src/javax/inject/package-info.java -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/allclasses-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/allclasses-frame.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/allclasses-noframe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/allclasses-noframe.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/constant-values (1).html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/constant-values (1).html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/constant-values.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/constant-values.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/help-doc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/help-doc.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/index-all.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/index-all.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/index.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/Clock.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/Clock.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/DateTimeException (1).html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/DateTimeException (1).html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/DateTimeException.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/DateTimeException.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/DayOfWeek.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/DayOfWeek.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/Duration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/Duration.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/Instant.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/Instant.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/LocalDate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/LocalDate.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/LocalDateTime.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/LocalDateTime.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/LocalTime.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/LocalTime.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/Month.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/Month.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/MonthDay.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/MonthDay.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/OffsetDateTime.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/OffsetDateTime.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/Period.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/Period.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/Year.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/Year.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/YearMonth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/YearMonth.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/ZonedDateTime.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/ZonedDateTime.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/chrono/AbstractChronology.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/chrono/AbstractChronology.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/chrono/ChronoLocalDate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/chrono/ChronoLocalDate.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/chrono/ChronoLocalDateTime.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/chrono/ChronoLocalDateTime.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/chrono/ChronoPeriod.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/chrono/ChronoPeriod.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/chrono/ChronoZonedDateTime.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/chrono/ChronoZonedDateTime.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/chrono/Chronology.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/chrono/Chronology.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/chrono/Era.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/chrono/Era.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/chrono/HijrahChronology.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/chrono/HijrahChronology.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/chrono/HijrahDate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/chrono/HijrahDate.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/chrono/HijrahEra.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/chrono/HijrahEra.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/chrono/IsoChronology.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/chrono/IsoChronology.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/chrono/IsoEra.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/chrono/IsoEra.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/chrono/JapaneseChronology.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/chrono/JapaneseChronology.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/chrono/JapaneseDate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/chrono/JapaneseDate.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/chrono/JapaneseEra.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/chrono/JapaneseEra.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/chrono/MinguoChronology.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/chrono/MinguoChronology.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/chrono/MinguoDate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/chrono/MinguoDate.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/chrono/MinguoEra.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/chrono/MinguoEra.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/chrono/ThaiBuddhistChronology.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/chrono/ThaiBuddhistChronology.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/chrono/ThaiBuddhistDate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/chrono/ThaiBuddhistDate.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/chrono/ThaiBuddhistEra.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/chrono/ThaiBuddhistEra.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/chrono/class-use/AbstractChronology.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/chrono/class-use/AbstractChronology.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/chrono/class-use/ChronoLocalDate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/chrono/class-use/ChronoLocalDate.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/chrono/class-use/ChronoLocalDateTime.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/chrono/class-use/ChronoLocalDateTime.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/chrono/class-use/ChronoPeriod.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/chrono/class-use/ChronoPeriod.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/chrono/class-use/ChronoZonedDateTime.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/chrono/class-use/ChronoZonedDateTime.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/chrono/class-use/Chronology.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/chrono/class-use/Chronology.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/chrono/class-use/Era.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/chrono/class-use/Era.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/chrono/class-use/HijrahChronology.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/chrono/class-use/HijrahChronology.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/chrono/class-use/HijrahDate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/chrono/class-use/HijrahDate.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/chrono/class-use/HijrahEra.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/chrono/class-use/HijrahEra.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/chrono/class-use/IsoChronology.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/chrono/class-use/IsoChronology.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/chrono/class-use/IsoEra.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/chrono/class-use/IsoEra.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/chrono/class-use/JapaneseChronology.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/chrono/class-use/JapaneseChronology.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/chrono/class-use/JapaneseDate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/chrono/class-use/JapaneseDate.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/chrono/class-use/JapaneseEra.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/chrono/class-use/JapaneseEra.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/chrono/class-use/MinguoChronology.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/chrono/class-use/MinguoChronology.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/chrono/class-use/MinguoDate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/chrono/class-use/MinguoDate.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/chrono/class-use/MinguoEra.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/chrono/class-use/MinguoEra.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/chrono/class-use/ThaiBuddhistChronology.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/chrono/class-use/ThaiBuddhistChronology.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/chrono/class-use/ThaiBuddhistDate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/chrono/class-use/ThaiBuddhistDate.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/chrono/class-use/ThaiBuddhistEra.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/chrono/class-use/ThaiBuddhistEra.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/chrono/package-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/chrono/package-frame.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/chrono/package-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/chrono/package-summary.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/chrono/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/chrono/package-tree.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/chrono/package-use.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/chrono/package-use.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/class-use/Clock.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/class-use/Clock.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/class-use/DateTimeException.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/class-use/DateTimeException.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/class-use/DayOfWeek.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/class-use/DayOfWeek.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/class-use/Duration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/class-use/Duration.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/class-use/Instant.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/class-use/Instant.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/class-use/LocalDate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/class-use/LocalDate.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/class-use/LocalDateTime.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/class-use/LocalDateTime.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/class-use/LocalTime.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/class-use/LocalTime.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/class-use/Month.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/class-use/Month.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/class-use/MonthDay.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/class-use/MonthDay.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/class-use/OffsetDateTime.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/class-use/OffsetDateTime.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/class-use/OffsetTime.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/class-use/OffsetTime.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/class-use/Period.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/class-use/Period.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/class-use/Year.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/class-use/Year.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/class-use/YearMonth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/class-use/YearMonth.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/class-use/ZoneId.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/class-use/ZoneId.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/class-use/ZoneOffset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/class-use/ZoneOffset.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/class-use/ZonedDateTime.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/class-use/ZonedDateTime.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/format/DateTimeFormatter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/format/DateTimeFormatter.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/format/DateTimeFormatterBuilder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/format/DateTimeFormatterBuilder.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/format/DateTimeParseException.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/format/DateTimeParseException.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/format/DecimalStyle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/format/DecimalStyle.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/format/FormatStyle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/format/FormatStyle.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/format/ResolverStyle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/format/ResolverStyle.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/format/SignStyle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/format/SignStyle.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/format/TextStyle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/format/TextStyle.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/format/class-use/DateTimeFormatter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/format/class-use/DateTimeFormatter.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/format/class-use/DateTimeFormatterBuilder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/format/class-use/DateTimeFormatterBuilder.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/format/class-use/DateTimeParseException.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/format/class-use/DateTimeParseException.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/format/class-use/DecimalStyle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/format/class-use/DecimalStyle.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/format/class-use/FormatStyle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/format/class-use/FormatStyle.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/format/class-use/ResolverStyle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/format/class-use/ResolverStyle.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/format/class-use/SignStyle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/format/class-use/SignStyle.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/format/class-use/TextStyle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/format/class-use/TextStyle.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/format/package-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/format/package-frame.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/format/package-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/format/package-summary.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/format/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/format/package-tree.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/format/package-use.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/format/package-use.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/package-frame (1).html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/package-frame (1).html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/package-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/package-frame.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/package-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/package-summary.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/package-tree.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/package-use.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/package-use.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/temporal/ChronoField.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/temporal/ChronoField.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/temporal/ChronoUnit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/temporal/ChronoUnit.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/temporal/IsoFields.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/temporal/IsoFields.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/temporal/JulianFields.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/temporal/JulianFields.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/temporal/Temporal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/temporal/Temporal.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/temporal/TemporalAccessor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/temporal/TemporalAccessor.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/temporal/TemporalAdjuster.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/temporal/TemporalAdjuster.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/temporal/TemporalAdjusters.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/temporal/TemporalAdjusters.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/temporal/TemporalAmount.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/temporal/TemporalAmount.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/temporal/TemporalField.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/temporal/TemporalField.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/temporal/TemporalQueries.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/temporal/TemporalQueries.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/temporal/TemporalQuery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/temporal/TemporalQuery.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/temporal/TemporalUnit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/temporal/TemporalUnit.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/temporal/UnsupportedTemporalTypeException.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/temporal/UnsupportedTemporalTypeException.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/temporal/ValueRange.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/temporal/ValueRange.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/temporal/WeekFields.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/temporal/WeekFields.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/temporal/class-use/ChronoField.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/temporal/class-use/ChronoField.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/temporal/class-use/ChronoUnit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/temporal/class-use/ChronoUnit.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/temporal/class-use/IsoFields.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/temporal/class-use/IsoFields.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/temporal/class-use/JulianFields.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/temporal/class-use/JulianFields.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/temporal/class-use/Temporal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/temporal/class-use/Temporal.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/temporal/class-use/TemporalAccessor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/temporal/class-use/TemporalAccessor.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/temporal/class-use/TemporalAdjuster.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/temporal/class-use/TemporalAdjuster.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/temporal/class-use/TemporalAdjusters.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/temporal/class-use/TemporalAdjusters.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/temporal/class-use/TemporalAmount.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/temporal/class-use/TemporalAmount.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/temporal/class-use/TemporalField.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/temporal/class-use/TemporalField.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/temporal/class-use/TemporalQueries.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/temporal/class-use/TemporalQueries.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/temporal/class-use/TemporalQuery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/temporal/class-use/TemporalQuery.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/temporal/class-use/TemporalUnit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/temporal/class-use/TemporalUnit.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/temporal/class-use/UnsupportedTemporalTypeException.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/temporal/class-use/UnsupportedTemporalTypeException.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/temporal/class-use/ValueRange.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/temporal/class-use/ValueRange.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/temporal/class-use/WeekFields.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/temporal/class-use/WeekFields.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/temporal/package-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/temporal/package-frame.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/temporal/package-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/temporal/package-summary.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/temporal/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/temporal/package-tree.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/temporal/package-use.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/temporal/package-use.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/zone/ZoneOffsetTransition.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/zone/ZoneOffsetTransition.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/zone/ZoneOffsetTransitionRule.TimeDefinition.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/zone/ZoneOffsetTransitionRule.TimeDefinition.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/zone/ZoneOffsetTransitionRule.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/zone/ZoneOffsetTransitionRule.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/zone/ZoneRules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/zone/ZoneRules.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/zone/ZoneRulesException.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/zone/ZoneRulesException.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/zone/ZoneRulesProvider.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/zone/ZoneRulesProvider.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/zone/class-use/ZoneOffsetTransition.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/zone/class-use/ZoneOffsetTransition.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/zone/class-use/ZoneOffsetTransitionRule.TimeDefinition.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/zone/class-use/ZoneOffsetTransitionRule.TimeDefinition.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/zone/class-use/ZoneOffsetTransitionRule.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/zone/class-use/ZoneOffsetTransitionRule.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/zone/class-use/ZoneRules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/zone/class-use/ZoneRules.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/zone/class-use/ZoneRulesException.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/zone/class-use/ZoneRulesException.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/zone/class-use/ZoneRulesProvider.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/zone/class-use/ZoneRulesProvider.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/zone/package-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/zone/package-frame.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/zone/package-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/zone/package-summary.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/zone/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/zone/package-tree.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/java/time/zone/package-use.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/java/time/zone/package-use.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/overview-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/overview-frame.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/overview-summary (1).html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/overview-summary (1).html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/overview-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/overview-summary.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/overview-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/overview-tree.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/package-list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/package-list -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/script.js -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/serialized-form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/serialized-form.html -------------------------------------------------------------------------------- /Date and Time/datetime-1_0-fr-spec/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Date and Time/datetime-1_0-fr-spec/stylesheet.css -------------------------------------------------------------------------------- /EE/Java 2 Platform Enterprise Edition Specification 1.4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/EE/Java 2 Platform Enterprise Edition Specification 1.4.pdf -------------------------------------------------------------------------------- /EE/Java Authorization Contract for Containers.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/EE/Java Authorization Contract for Containers.pdf -------------------------------------------------------------------------------- /EE/Java Platform, Enterprise Edition (Java EE) Specification 5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/EE/Java Platform, Enterprise Edition (Java EE) Specification 5.pdf -------------------------------------------------------------------------------- /EE/JavaTM 2 Platform Enterprise Edition Management Specification 1.0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/EE/JavaTM 2 Platform Enterprise Edition Management Specification 1.0.pdf -------------------------------------------------------------------------------- /EE/JavaTM 2EnterpriseEdition J2EE Connector Architecture Speci%3Fcation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/EE/JavaTM 2EnterpriseEdition J2EE Connector Architecture Speci%3Fcation.pdf -------------------------------------------------------------------------------- /EE/JavaTM Enterprise Edition 5 Deployment API Specification, Version 1.2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/EE/JavaTM Enterprise Edition 5 Deployment API Specification, Version 1.2.pdf -------------------------------------------------------------------------------- /EE/connector_1_6-1_0-pr-spec.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/EE/connector_1_6-1_0-pr-spec.pdf -------------------------------------------------------------------------------- /EE/jta-1_1-spec.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/EE/jta-1_1-spec.pdf -------------------------------------------------------------------------------- /EE/msa-0_19-pr-spec.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/EE/msa-0_19-pr-spec.pdf -------------------------------------------------------------------------------- /EJB/Enterprise JavaBeans 3.0 Core Contracts and Requirements.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/EJB/Enterprise JavaBeans 3.0 Core Contracts and Requirements.pdf -------------------------------------------------------------------------------- /EJB/Enterprise JavaBeans Specification 1.1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/EJB/Enterprise JavaBeans Specification 1.1.pdf -------------------------------------------------------------------------------- /EJB/Enterprise JavaBeans Specification 2.0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/EJB/Enterprise JavaBeans Specification 2.0.pdf -------------------------------------------------------------------------------- /EJB/Enterprise JavaBeans Specification 2.1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/EJB/Enterprise JavaBeans Specification 2.1.pdf -------------------------------------------------------------------------------- /EJB/Enterprise JavaBeans Specification 3.0 EJB Core.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/EJB/Enterprise JavaBeans Specification 3.0 EJB Core.pdf -------------------------------------------------------------------------------- /EJB/Enterprise JavaBeans Specification 3.0 Persistence.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/EJB/Enterprise JavaBeans Specification 3.0 Persistence.pdf -------------------------------------------------------------------------------- /EJB/Enterprise JavaBeans Specification 3.0 Simplified API.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/EJB/Enterprise JavaBeans Specification 3.0 Simplified API.pdf -------------------------------------------------------------------------------- /EL/Expression Language Speci Fcation Version 2.1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/EL/Expression Language Speci Fcation Version 2.1.pdf -------------------------------------------------------------------------------- /Image/Programming in Java Advanced Imaging.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Image/Programming in Java Advanced Imaging.pdf -------------------------------------------------------------------------------- /Interceptors/JSR-318-Interceptors.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Interceptors/JSR-318-Interceptors.pdf -------------------------------------------------------------------------------- /JAXB/The Java Architecture for XML Binding (JAXB) 2.0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/JAXB/The Java Architecture for XML Binding (JAXB) 2.0.pdf -------------------------------------------------------------------------------- /JDBC/JDBC 4.0 Specification.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/JDBC/JDBC 4.0 Specification.pdf -------------------------------------------------------------------------------- /JDBC/jdbc4.1-fr-spec.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/JDBC/jdbc4.1-fr-spec.pdf -------------------------------------------------------------------------------- /JDO/JavaTM Data Objects 2.0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/JDO/JavaTM Data Objects 2.0.pdf -------------------------------------------------------------------------------- /JDO/JavaTM Data Objects 2.1 2007-10-17.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/JDO/JavaTM Data Objects 2.1 2007-10-17.pdf -------------------------------------------------------------------------------- /JDO/jdo-1_0_1-spec.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/JDO/jdo-1_0_1-spec.pdf -------------------------------------------------------------------------------- /JLS/JSR-337 Java Language Specfication.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/JLS/JSR-337 Java Language Specfication.pdf -------------------------------------------------------------------------------- /JLS/JSR-901 Java Language Specification.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/JLS/JSR-901 Java Language Specification.pdf -------------------------------------------------------------------------------- /JLS/Java Language Specification Third Edition.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/JLS/Java Language Specification Third Edition.pdf -------------------------------------------------------------------------------- /JMS/ JSR-343 JMS 2.0 rev A Specification.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/JMS/ JSR-343 JMS 2.0 rev A Specification.pdf -------------------------------------------------------------------------------- /JMS/Java Message Service 1.1-fr-spec.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/JMS/Java Message Service 1.1-fr-spec.pdf -------------------------------------------------------------------------------- /JMX/Java Management Extensions 1.0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/JMX/Java Management Extensions 1.0.pdf -------------------------------------------------------------------------------- /JMX/Java Management Extensions 1.2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/JMX/Java Management Extensions 1.2.pdf -------------------------------------------------------------------------------- /JMX/Java Management Extensions 1.4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/JMX/Java Management Extensions 1.4.pdf -------------------------------------------------------------------------------- /JNLP/a.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/JNLP/a.html -------------------------------------------------------------------------------- /JNLP/app-resources.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/JNLP/app-resources.html -------------------------------------------------------------------------------- /JNLP/b.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/JNLP/b.html -------------------------------------------------------------------------------- /JNLP/c.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/JNLP/c.html -------------------------------------------------------------------------------- /JNLP/d.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/JNLP/d.html -------------------------------------------------------------------------------- /JNLP/download.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/JNLP/download.html -------------------------------------------------------------------------------- /JNLP/images/NewLogoLarge.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/JNLP/images/NewLogoLarge.gif -------------------------------------------------------------------------------- /JNLP/images/jnlp-file-overview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/JNLP/images/jnlp-file-overview.gif -------------------------------------------------------------------------------- /JNLP/images/jnlp-spec-1.0.1-fcs-TEST_sdw_1b5e7558.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/JNLP/images/jnlp-spec-1.0.1-fcs-TEST_sdw_1b5e7558.gif -------------------------------------------------------------------------------- /JNLP/images/jnlp-spec-1.0.1-fcs-TEST_sdw_21fb274a.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/JNLP/images/jnlp-spec-1.0.1-fcs-TEST_sdw_21fb274a.gif -------------------------------------------------------------------------------- /JNLP/images/jnlp-spec-1.0.1-fcs-TEST_sdw_23feb2e9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/JNLP/images/jnlp-spec-1.0.1-fcs-TEST_sdw_23feb2e9.gif -------------------------------------------------------------------------------- /JNLP/images/jnlp-spec-1.0.1-fcs-TEST_sdw_337804a9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/JNLP/images/jnlp-spec-1.0.1-fcs-TEST_sdw_337804a9.gif -------------------------------------------------------------------------------- /JNLP/images/jnlp-spec-1.0.1-fcs-TEST_sdw_3436c034.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/JNLP/images/jnlp-spec-1.0.1-fcs-TEST_sdw_3436c034.gif -------------------------------------------------------------------------------- /JNLP/images/jnlp-spec-1.0.1-fcs-TEST_sdw_34a110b.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/JNLP/images/jnlp-spec-1.0.1-fcs-TEST_sdw_34a110b.gif -------------------------------------------------------------------------------- /JNLP/images/jnlp-spec-1.0.1-fcs-TEST_sdw_40f3640e.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/JNLP/images/jnlp-spec-1.0.1-fcs-TEST_sdw_40f3640e.gif -------------------------------------------------------------------------------- /JNLP/images/jnlp-spec-1.0.1-fcs-TEST_sdw_5d9e2978.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/JNLP/images/jnlp-spec-1.0.1-fcs-TEST_sdw_5d9e2978.gif -------------------------------------------------------------------------------- /JNLP/images/jnlp-spec-1.0.1-fcs-TEST_sdw_60acc15.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/JNLP/images/jnlp-spec-1.0.1-fcs-TEST_sdw_60acc15.gif -------------------------------------------------------------------------------- /JNLP/images/jnlp-spec-1.0.1-fcs-TEST_sdw_668d1ae6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/JNLP/images/jnlp-spec-1.0.1-fcs-TEST_sdw_668d1ae6.gif -------------------------------------------------------------------------------- /JNLP/images/jnlp-spec-1.0.1-fcs-TEST_sdw_720e2b7d.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/JNLP/images/jnlp-spec-1.0.1-fcs-TEST_sdw_720e2b7d.gif -------------------------------------------------------------------------------- /JNLP/images/jnlp-spec-1.0.1-fcs-TEST_sdw_m19aacb89.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/JNLP/images/jnlp-spec-1.0.1-fcs-TEST_sdw_m19aacb89.gif -------------------------------------------------------------------------------- /JNLP/images/jnlp-spec-1.0.1-fcs-TEST_sdw_m1a4738e9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/JNLP/images/jnlp-spec-1.0.1-fcs-TEST_sdw_m1a4738e9.gif -------------------------------------------------------------------------------- /JNLP/images/jnlp-spec-1.0.1-fcs-TEST_sdw_m273c1b7c.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/JNLP/images/jnlp-spec-1.0.1-fcs-TEST_sdw_m273c1b7c.jpg -------------------------------------------------------------------------------- /JNLP/images/jnlp-spec-1.0.1-fcs-TEST_sdw_m29edaa65.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/JNLP/images/jnlp-spec-1.0.1-fcs-TEST_sdw_m29edaa65.gif -------------------------------------------------------------------------------- /JNLP/images/jnlp-spec-1.0.1-fcs-TEST_sdw_m2f1e9a53.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/JNLP/images/jnlp-spec-1.0.1-fcs-TEST_sdw_m2f1e9a53.gif -------------------------------------------------------------------------------- /JNLP/images/jnlp-spec-1.0.1-fcs-TEST_sdw_m31437ea4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/JNLP/images/jnlp-spec-1.0.1-fcs-TEST_sdw_m31437ea4.gif -------------------------------------------------------------------------------- /JNLP/images/jnlp-spec-1.0.1-fcs-TEST_sdw_m32d660f1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/JNLP/images/jnlp-spec-1.0.1-fcs-TEST_sdw_m32d660f1.gif -------------------------------------------------------------------------------- /JNLP/images/jnlp-spec-1.0.1-fcs-TEST_sdw_m34bc04b8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/JNLP/images/jnlp-spec-1.0.1-fcs-TEST_sdw_m34bc04b8.gif -------------------------------------------------------------------------------- /JNLP/images/jnlp-spec-1.0.1-fcs-TEST_sdw_m3d3e0f71.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/JNLP/images/jnlp-spec-1.0.1-fcs-TEST_sdw_m3d3e0f71.gif -------------------------------------------------------------------------------- /JNLP/images/jnlp-spec-1.0.1-fcs-TEST_sdw_m5cd51518.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/JNLP/images/jnlp-spec-1.0.1-fcs-TEST_sdw_m5cd51518.gif -------------------------------------------------------------------------------- /JNLP/images/jnlp-spec-1.0.1-fcs-TEST_sdw_m5e68df4b.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/JNLP/images/jnlp-spec-1.0.1-fcs-TEST_sdw_m5e68df4b.gif -------------------------------------------------------------------------------- /JNLP/images/jnlp-spec-1.0.1-fcs-TEST_sdw_m5fc6bde1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/JNLP/images/jnlp-spec-1.0.1-fcs-TEST_sdw_m5fc6bde1.gif -------------------------------------------------------------------------------- /JNLP/images/jnlp-spec-1.0.1-fcs-TEST_sdw_m60e4703e.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/JNLP/images/jnlp-spec-1.0.1-fcs-TEST_sdw_m60e4703e.gif -------------------------------------------------------------------------------- /JNLP/images/jnlp-spec-1.0.1-fcs-TEST_sdw_m6c3b7953.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/JNLP/images/jnlp-spec-1.0.1-fcs-TEST_sdw_m6c3b7953.gif -------------------------------------------------------------------------------- /JNLP/images/jnlp-spec-1.0.1-fcs-TEST_sdw_m6f3ac421.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/JNLP/images/jnlp-spec-1.0.1-fcs-TEST_sdw_m6f3ac421.gif -------------------------------------------------------------------------------- /JNLP/images/jnlp-spec-1.0.1-fcs-TEST_sdw_m73d3a86f.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/JNLP/images/jnlp-spec-1.0.1-fcs-TEST_sdw_m73d3a86f.gif -------------------------------------------------------------------------------- /JNLP/images/jnlp-spec-1.0.1-fcs-TEST_sdw_m781c04f5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/JNLP/images/jnlp-spec-1.0.1-fcs-TEST_sdw_m781c04f5.gif -------------------------------------------------------------------------------- /JNLP/images/jnlp-spec-1.0.1-fcs-TEST_sdw_m7d366ad.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/JNLP/images/jnlp-spec-1.0.1-fcs-TEST_sdw_m7d366ad.gif -------------------------------------------------------------------------------- /JNLP/images/jnlp-spec-1.0.1-fcs-TEST_sdw_m9cfa9dc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/JNLP/images/jnlp-spec-1.0.1-fcs-TEST_sdw_m9cfa9dc.gif -------------------------------------------------------------------------------- /JNLP/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/JNLP/index.html -------------------------------------------------------------------------------- /JNLP/jnlp-api.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/JNLP/jnlp-api.html -------------------------------------------------------------------------------- /JNLP/jnlp-file.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/JNLP/jnlp-file.html -------------------------------------------------------------------------------- /JNLP/launch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/JNLP/launch.html -------------------------------------------------------------------------------- /JNLP/notes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/JNLP/notes.html -------------------------------------------------------------------------------- /JNLP/notice.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/JNLP/notice.html -------------------------------------------------------------------------------- /JNLP/overview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/JNLP/overview.html -------------------------------------------------------------------------------- /JNLP/preface.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/JNLP/preface.html -------------------------------------------------------------------------------- /JNLP/terms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/JNLP/terms.html -------------------------------------------------------------------------------- /JNLP/toc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/JNLP/toc.html -------------------------------------------------------------------------------- /JPA/Enterprise JavaBeans 3.0 Java Persistence API.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/JPA/Enterprise JavaBeans 3.0 Java Persistence API.pdf -------------------------------------------------------------------------------- /JPA/Java Persistence API 2.0-final-spec.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/JPA/Java Persistence API 2.0-final-spec.pdf -------------------------------------------------------------------------------- /JSF/JavaServer Faces Specification 1.2-mrel-spec.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/JSF/JavaServer Faces Specification 1.2-mrel-spec.pdf -------------------------------------------------------------------------------- /JSF/jsf-2.0-pr-spec.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/JSF/jsf-2.0-pr-spec.pdf -------------------------------------------------------------------------------- /JSP/jsp-2_1-fr-spec-el.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/JSP/jsp-2_1-fr-spec-el.pdf -------------------------------------------------------------------------------- /JSP/jsp-2_1-fr-spec.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/JSP/jsp-2_1-fr-spec.pdf -------------------------------------------------------------------------------- /JSTL/JavaServer Pages Standard Tag Library 1.2 mrel2-spec.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/JSTL/JavaServer Pages Standard Tag Library 1.2 mrel2-spec.pdf -------------------------------------------------------------------------------- /JSTL/jstl-1_2-mrel2-spec.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/JSTL/jstl-1_2-mrel2-spec.pdf -------------------------------------------------------------------------------- /JTA/Java Transaction API 1.0.1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/JTA/Java Transaction API 1.0.1.pdf -------------------------------------------------------------------------------- /JTA/Java Transaction API 1.2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/JTA/Java Transaction API 1.2.pdf -------------------------------------------------------------------------------- /JTS/Java Transaction Service (JTS) 1.0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/JTS/Java Transaction Service (JTS) 1.0.pdf -------------------------------------------------------------------------------- /JVM/The Java Virtual Machine Specification, Java SE 10 Edition.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/JVM/The Java Virtual Machine Specification, Java SE 10 Edition.pdf -------------------------------------------------------------------------------- /JVM/The Java Virtual Machine Specification, Java SE 11 Edition.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/JVM/The Java Virtual Machine Specification, Java SE 11 Edition.pdf -------------------------------------------------------------------------------- /JVM/The Java Virtual Machine Specification, Java SE 12 Edition.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/JVM/The Java Virtual Machine Specification, Java SE 12 Edition.pdf -------------------------------------------------------------------------------- /JVM/The Java Virtual Machine Specification, Java SE 7 Edition.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/JVM/The Java Virtual Machine Specification, Java SE 7 Edition.pdf -------------------------------------------------------------------------------- /JVM/The Java Virtual Machine Specification, Java SE 8 Edition.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/JVM/The Java Virtual Machine Specification, Java SE 8 Edition.pdf -------------------------------------------------------------------------------- /JVM/The Java Virtual Machine Specification, Java SE 9 Edition.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/JVM/The Java Virtual Machine Specification, Java SE 9 Edition.pdf -------------------------------------------------------------------------------- /Java Beans/Java Beans Specification 1.01.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Java Beans/Java Beans Specification 1.01.pdf -------------------------------------------------------------------------------- /Lang/The Java Language Specification Java SE 10 Edition.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Lang/The Java Language Specification Java SE 10 Edition.pdf -------------------------------------------------------------------------------- /Lang/The Java Language Specification Java SE 11 Edition.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Lang/The Java Language Specification Java SE 11 Edition.pdf -------------------------------------------------------------------------------- /Lang/The Java Language Specification Java SE 12 Edition.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Lang/The Java Language Specification Java SE 12 Edition.pdf -------------------------------------------------------------------------------- /Lang/The Java Language Specification Java SE 7 Edition.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Lang/The Java Language Specification Java SE 7 Edition.pdf -------------------------------------------------------------------------------- /Lang/The Java Language Specification Java SE 8 Edition.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Lang/The Java Language Specification Java SE 8 Edition.pdf -------------------------------------------------------------------------------- /Lang/The Java Language Specification Java SE 9 Edition.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Lang/The Java Language Specification Java SE 9 Edition.pdf -------------------------------------------------------------------------------- /Lang/The Java Language Specification Third Edition.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Lang/The Java Language Specification Third Edition.pdf -------------------------------------------------------------------------------- /Mail/JavaMail-1.4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Mail/JavaMail-1.4.pdf -------------------------------------------------------------------------------- /Mail/Providers.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Mail/Providers.pdf -------------------------------------------------------------------------------- /Portlet/PortletSpec3-Draft1-20151005.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Portlet/PortletSpec3-Draft1-20151005.pdf -------------------------------------------------------------------------------- /Portlet/portlet-1_0-fr-spec.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Portlet/portlet-1_0-fr-spec.pdf -------------------------------------------------------------------------------- /REST/JAX-RS Java API for RESTful Web Services 1.0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/REST/JAX-RS Java API for RESTful Web Services 1.0.pdf -------------------------------------------------------------------------------- /REST/JAX-RS Java API for RESTful Web Services 1.1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/REST/JAX-RS Java API for RESTful Web Services 1.1.pdf -------------------------------------------------------------------------------- /REST/JAX-RS Java API for RESTful Web Services 2.0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/REST/JAX-RS Java API for RESTful Web Services 2.0.pdf -------------------------------------------------------------------------------- /REST/JAX-RS Java API for RESTful Web Services 2.1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/REST/JAX-RS Java API for RESTful Web Services 2.1.pdf -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/AlteredStdJava.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/AlteredStdJava.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/JSR 1 FCS Eval license MREL.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/JSR 1 FCS Eval license MREL.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/JSR 1 FCS Full License MREL.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/JSR 1 FCS Full License MREL.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/MinimumRequirements.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/MinimumRequirements.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/acknowledgments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/acknowledgments.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/allChapters-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/allChapters-frame.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/async_allclasses-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/async_allclasses-frame.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/async_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/async_index.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/async_overview-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/async_overview-summary.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/authors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/authors.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/changes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/changes.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/deprecated-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/deprecated-list.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/design.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/design.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/exceptions_allclasses-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/exceptions_allclasses-frame.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/exceptions_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/exceptions_index.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/exceptions_overview-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/exceptions_overview-summary.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/foreword.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/foreword.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/foreword2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/foreword2.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/hrtime_allclasses-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/hrtime_allclasses-frame.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/hrtime_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/hrtime_index.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/hrtime_overview-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/hrtime_overview-summary.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/index.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/introduction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/introduction.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/javax/realtime/AbsoluteTime.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/javax/realtime/AbsoluteTime.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/javax/realtime/AperiodicParameters.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/javax/realtime/AperiodicParameters.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/javax/realtime/ArrivalTimeQueueOverflowException.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/javax/realtime/ArrivalTimeQueueOverflowException.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/javax/realtime/AsyncEvent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/javax/realtime/AsyncEvent.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/javax/realtime/AsyncEventHandler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/javax/realtime/AsyncEventHandler.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/javax/realtime/AsynchronouslyInterruptedException.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/javax/realtime/AsynchronouslyInterruptedException.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/javax/realtime/BoundAsyncEventHandler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/javax/realtime/BoundAsyncEventHandler.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/javax/realtime/CeilingViolationException.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/javax/realtime/CeilingViolationException.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/javax/realtime/Clock.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/javax/realtime/Clock.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/javax/realtime/DuplicateFilterException.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/javax/realtime/DuplicateFilterException.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/javax/realtime/EventNotFoundException.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/javax/realtime/EventNotFoundException.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/javax/realtime/GarbageCollector.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/javax/realtime/GarbageCollector.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/javax/realtime/HandlerNotFoundException.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/javax/realtime/HandlerNotFoundException.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/javax/realtime/HeapMemory.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/javax/realtime/HeapMemory.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/javax/realtime/HighResolutionTime.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/javax/realtime/HighResolutionTime.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/javax/realtime/IllegalAssignmentError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/javax/realtime/IllegalAssignmentError.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/javax/realtime/ImmortalMemory.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/javax/realtime/ImmortalMemory.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/javax/realtime/ImmortalPhysicalMemory.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/javax/realtime/ImmortalPhysicalMemory.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/javax/realtime/ImportanceParameters.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/javax/realtime/ImportanceParameters.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/javax/realtime/InaccessibleAreaException.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/javax/realtime/InaccessibleAreaException.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/javax/realtime/Interruptible.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/javax/realtime/Interruptible.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/javax/realtime/LTMemory.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/javax/realtime/LTMemory.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/javax/realtime/LTPhysicalMemory.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/javax/realtime/LTPhysicalMemory.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/javax/realtime/MITViolationException.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/javax/realtime/MITViolationException.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/javax/realtime/MemoryAccessError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/javax/realtime/MemoryAccessError.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/javax/realtime/MemoryArea.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/javax/realtime/MemoryArea.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/javax/realtime/MemoryInUseException.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/javax/realtime/MemoryInUseException.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/javax/realtime/MemoryParameters.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/javax/realtime/MemoryParameters.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/javax/realtime/MemoryScopeException.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/javax/realtime/MemoryScopeException.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/javax/realtime/MemoryTypeConflictException.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/javax/realtime/MemoryTypeConflictException.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/javax/realtime/MonitorControl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/javax/realtime/MonitorControl.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/javax/realtime/NoHeapRealtimeThread.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/javax/realtime/NoHeapRealtimeThread.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/javax/realtime/OffsetOutOfBoundsException.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/javax/realtime/OffsetOutOfBoundsException.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/javax/realtime/OneShotTimer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/javax/realtime/OneShotTimer.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/javax/realtime/POSIXSignalHandler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/javax/realtime/POSIXSignalHandler.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/javax/realtime/PeriodicParameters.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/javax/realtime/PeriodicParameters.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/javax/realtime/PeriodicTimer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/javax/realtime/PeriodicTimer.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/javax/realtime/PhysicalMemoryManager.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/javax/realtime/PhysicalMemoryManager.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/javax/realtime/PhysicalMemoryTypeFilter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/javax/realtime/PhysicalMemoryTypeFilter.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/javax/realtime/PriorityCeilingEmulation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/javax/realtime/PriorityCeilingEmulation.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/javax/realtime/PriorityInheritance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/javax/realtime/PriorityInheritance.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/javax/realtime/PriorityParameters.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/javax/realtime/PriorityParameters.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/javax/realtime/PriorityScheduler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/javax/realtime/PriorityScheduler.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/javax/realtime/ProcessingGroupParameters.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/javax/realtime/ProcessingGroupParameters.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/javax/realtime/RationalTime.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/javax/realtime/RationalTime.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/javax/realtime/RawMemoryAccess.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/javax/realtime/RawMemoryAccess.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/javax/realtime/RawMemoryFloatAccess.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/javax/realtime/RawMemoryFloatAccess.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/javax/realtime/RealtimeSecurity.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/javax/realtime/RealtimeSecurity.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/javax/realtime/RealtimeSystem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/javax/realtime/RealtimeSystem.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/javax/realtime/RealtimeThread.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/javax/realtime/RealtimeThread.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/javax/realtime/RelativeTime.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/javax/realtime/RelativeTime.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/javax/realtime/ReleaseParameters.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/javax/realtime/ReleaseParameters.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/javax/realtime/ResourceLimitError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/javax/realtime/ResourceLimitError.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/javax/realtime/Schedulable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/javax/realtime/Schedulable.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/javax/realtime/Scheduler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/javax/realtime/Scheduler.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/javax/realtime/SchedulingParameters.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/javax/realtime/SchedulingParameters.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/javax/realtime/ScopedCycleException.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/javax/realtime/ScopedCycleException.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/javax/realtime/ScopedMemory.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/javax/realtime/ScopedMemory.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/javax/realtime/SizeEstimator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/javax/realtime/SizeEstimator.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/javax/realtime/SizeOutOfBoundsException.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/javax/realtime/SizeOutOfBoundsException.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/javax/realtime/SporadicParameters.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/javax/realtime/SporadicParameters.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/javax/realtime/ThrowBoundaryError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/javax/realtime/ThrowBoundaryError.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/javax/realtime/Timed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/javax/realtime/Timed.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/javax/realtime/Timer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/javax/realtime/Timer.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/javax/realtime/UnknownHappeningException.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/javax/realtime/UnknownHappeningException.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/javax/realtime/UnsupportedPhysicalMemoryException.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/javax/realtime/UnsupportedPhysicalMemoryException.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/javax/realtime/VTMemory.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/javax/realtime/VTMemory.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/javax/realtime/VTPhysicalMemory.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/javax/realtime/VTPhysicalMemory.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/javax/realtime/WaitFreeDequeue.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/javax/realtime/WaitFreeDequeue.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/javax/realtime/WaitFreeReadQueue.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/javax/realtime/WaitFreeReadQueue.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/javax/realtime/WaitFreeWriteQueue.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/javax/realtime/WaitFreeWriteQueue.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/javax/realtime/doc-files/timers_state_machine.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/javax/realtime/doc-files/timers_state_machine.gif -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/javax/realtime/package-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/javax/realtime/package-frame.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/javax/realtime/package-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/javax/realtime/package-summary.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/javax/realtime/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/javax/realtime/package-tree.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/javax/realtime/resources/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/javax/realtime/resources/.DS_Store -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/javax/realtime/resources/inherit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/javax/realtime/resources/inherit.gif -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/mem_allclasses-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/mem_allclasses-frame.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/mem_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/mem_index.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/mem_overview-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/mem_overview-summary.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/preface.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/preface.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/preface2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/preface2.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/resources/inherit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/resources/inherit.gif -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/sched_allclasses-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/sched_allclasses-frame.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/sched_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/sched_index.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/sched_overview-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/sched_overview-summary.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/stylesheet.css -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/sync_allclasses-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/sync_allclasses-frame.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/sync_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/sync_index.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/sync_overview-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/sync_overview-summary.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/system_allclasses-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/system_allclasses-frame.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/system_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/system_index.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/system_overview-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/system_overview-summary.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/threads_allclasses-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/threads_allclasses-frame.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/threads_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/threads_index.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/threads_overview-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/threads_overview-summary.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/timers_allclasses-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/timers_allclasses-frame.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/timers_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/timers_index.html -------------------------------------------------------------------------------- /RealTime/Java RealTime 1.0.2 spec/timers_overview-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/Java RealTime 1.0.2 spec/timers_overview-summary.html -------------------------------------------------------------------------------- /RealTime/realtime-1_0_2-mrel2-spec/acknowledgments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/realtime-1_0_2-mrel2-spec/acknowledgments.html -------------------------------------------------------------------------------- /RealTime/realtime-1_0_2-mrel2-spec/allChapters-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/realtime-1_0_2-mrel2-spec/allChapters-frame.html -------------------------------------------------------------------------------- /RealTime/realtime-1_0_2-mrel2-spec/async_allclasses-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/realtime-1_0_2-mrel2-spec/async_allclasses-frame.html -------------------------------------------------------------------------------- /RealTime/realtime-1_0_2-mrel2-spec/async_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/realtime-1_0_2-mrel2-spec/async_index.html -------------------------------------------------------------------------------- /RealTime/realtime-1_0_2-mrel2-spec/exceptions_allclasses-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/realtime-1_0_2-mrel2-spec/exceptions_allclasses-frame.html -------------------------------------------------------------------------------- /RealTime/realtime-1_0_2-mrel2-spec/exceptions_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/realtime-1_0_2-mrel2-spec/exceptions_index.html -------------------------------------------------------------------------------- /RealTime/realtime-1_0_2-mrel2-spec/exceptions_overview-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/realtime-1_0_2-mrel2-spec/exceptions_overview-summary.html -------------------------------------------------------------------------------- /RealTime/realtime-1_0_2-mrel2-spec/hrtime_allclasses-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/realtime-1_0_2-mrel2-spec/hrtime_allclasses-frame.html -------------------------------------------------------------------------------- /RealTime/realtime-1_0_2-mrel2-spec/hrtime_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/realtime-1_0_2-mrel2-spec/hrtime_index.html -------------------------------------------------------------------------------- /RealTime/realtime-1_0_2-mrel2-spec/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/realtime-1_0_2-mrel2-spec/index.html -------------------------------------------------------------------------------- /RealTime/realtime-1_0_2-mrel2-spec/javax/realtime/resources/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/realtime-1_0_2-mrel2-spec/javax/realtime/resources/.DS_Store -------------------------------------------------------------------------------- /RealTime/realtime-1_0_2-mrel2-spec/javax/realtime/resources/inherit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/realtime-1_0_2-mrel2-spec/javax/realtime/resources/inherit.gif -------------------------------------------------------------------------------- /RealTime/realtime-1_0_2-mrel2-spec/mem_allclasses-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/realtime-1_0_2-mrel2-spec/mem_allclasses-frame.html -------------------------------------------------------------------------------- /RealTime/realtime-1_0_2-mrel2-spec/mem_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/realtime-1_0_2-mrel2-spec/mem_index.html -------------------------------------------------------------------------------- /RealTime/realtime-1_0_2-mrel2-spec/resources/inherit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/realtime-1_0_2-mrel2-spec/resources/inherit.gif -------------------------------------------------------------------------------- /RealTime/realtime-1_0_2-mrel2-spec/sched_allclasses-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/realtime-1_0_2-mrel2-spec/sched_allclasses-frame.html -------------------------------------------------------------------------------- /RealTime/realtime-1_0_2-mrel2-spec/sched_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/realtime-1_0_2-mrel2-spec/sched_index.html -------------------------------------------------------------------------------- /RealTime/realtime-1_0_2-mrel2-spec/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/realtime-1_0_2-mrel2-spec/stylesheet.css -------------------------------------------------------------------------------- /RealTime/realtime-1_0_2-mrel2-spec/sync_allclasses-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/realtime-1_0_2-mrel2-spec/sync_allclasses-frame.html -------------------------------------------------------------------------------- /RealTime/realtime-1_0_2-mrel2-spec/sync_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/realtime-1_0_2-mrel2-spec/sync_index.html -------------------------------------------------------------------------------- /RealTime/realtime-1_0_2-mrel2-spec/system_allclasses-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/realtime-1_0_2-mrel2-spec/system_allclasses-frame.html -------------------------------------------------------------------------------- /RealTime/realtime-1_0_2-mrel2-spec/system_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/realtime-1_0_2-mrel2-spec/system_index.html -------------------------------------------------------------------------------- /RealTime/realtime-1_0_2-mrel2-spec/threads_allclasses-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/realtime-1_0_2-mrel2-spec/threads_allclasses-frame.html -------------------------------------------------------------------------------- /RealTime/realtime-1_0_2-mrel2-spec/threads_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/realtime-1_0_2-mrel2-spec/threads_index.html -------------------------------------------------------------------------------- /RealTime/realtime-1_0_2-mrel2-spec/timers_allclasses-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/realtime-1_0_2-mrel2-spec/timers_allclasses-frame.html -------------------------------------------------------------------------------- /RealTime/realtime-1_0_2-mrel2-spec/timers_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/RealTime/realtime-1_0_2-mrel2-spec/timers_index.html -------------------------------------------------------------------------------- /SAX/jsr173_1.0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/SAX/jsr173_1.0.pdf -------------------------------------------------------------------------------- /SIP Servlet/sipservlet-2_0-fr-spec.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/SIP Servlet/sipservlet-2_0-fr-spec.pdf -------------------------------------------------------------------------------- /SOAP/SOAP with Attachments API for Java(SAAJ) 1.3 changebars-mrel-spec.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/SOAP/SOAP with Attachments API for Java(SAAJ) 1.3 changebars-mrel-spec.pdf -------------------------------------------------------------------------------- /SOAP/SOAP with Attachments API for Java(SAAJ) 1.3 mrel-spec.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/SOAP/SOAP with Attachments API for Java(SAAJ) 1.3 mrel-spec.pdf -------------------------------------------------------------------------------- /Servlet/JSR-369 Java Servlet 4.0 Specification.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Servlet/JSR-369 Java Servlet 4.0 Specification.pdf -------------------------------------------------------------------------------- /Servlet/servlet-2_3-final.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Servlet/servlet-2_3-final.pdf -------------------------------------------------------------------------------- /Servlet/servlet-2_4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Servlet/servlet-2_4.pdf -------------------------------------------------------------------------------- /Servlet/servlet-3_0 final-spec.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Servlet/servlet-3_0 final-spec.pdf -------------------------------------------------------------------------------- /Servlet/servlet-3_0-mrel-spec.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Servlet/servlet-3_0-mrel-spec.pdf -------------------------------------------------------------------------------- /Servlet/servlet-3_1-final.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Servlet/servlet-3_1-final.pdf -------------------------------------------------------------------------------- /Servlet/servlet-4_0_FINAL.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Servlet/servlet-4_0_FINAL.pdf -------------------------------------------------------------------------------- /Specifications.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Specifications.txt -------------------------------------------------------------------------------- /WSDL/Java APIs for WSDL(JWSDL) 1.2 mrel2-spec.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/WSDL/Java APIs for WSDL(JWSDL) 1.2 mrel2-spec.pdf -------------------------------------------------------------------------------- /Web Services Metadata/JSR-000181 Web Services Metadata-2.1-MR.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Web Services Metadata/JSR-000181 Web Services Metadata-2.1-MR.pdf -------------------------------------------------------------------------------- /Web Services Metadata/Web Services Metadata for the Java Platform 1.0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Web Services Metadata/Web Services Metadata for the Java Platform 1.0.pdf -------------------------------------------------------------------------------- /Web Services/JSR-370 Java API for RESTful Web Services .pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Web Services/JSR-370 Java API for RESTful Web Services .pdf -------------------------------------------------------------------------------- /Web Services/The Java API for XML-Based Web Services(JAX-WS) 2.0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Web Services/The Java API for XML-Based Web Services(JAX-WS) 2.0.pdf -------------------------------------------------------------------------------- /Web Services/Web Services for Java EE 1.2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/Web Services/Web Services for Java EE 1.2.pdf -------------------------------------------------------------------------------- /WebSocket/websocket-1.1-maintenance-release-final.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/WebSocket/websocket-1.1-maintenance-release-final.pdf -------------------------------------------------------------------------------- /XML/Java API for XML-based RPC JAX-RPC 1.1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/XML/Java API for XML-based RPC JAX-RPC 1.1.pdf -------------------------------------------------------------------------------- /XQJ/XQJ_spec_v1.0_PFD_20071029.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mercyblitz/jsr/HEAD/XQJ/XQJ_spec_v1.0_PFD_20071029.pdf --------------------------------------------------------------------------------