Skip to content

Commit 0424a5b

Browse files
committed
Brand new update
1 parent ef65cf3 commit 0424a5b

File tree

258 files changed

+56866
-24767
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

258 files changed

+56866
-24767
lines changed

.gitattributes

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
# Handle line endings automatically for files detected as text
2+
# and leave all files detected as binary untouched.
3+
* text=auto
4+
5+
#
6+
# The above will handle all files NOT found below
7+
#
8+
# These files are text and should be normalized (Convert crlf => lf)
9+
*.css text
10+
*.df text
11+
*.htm text
12+
*.html text
13+
*.java text
14+
*.js text
15+
*.json text
16+
*.jsp text
17+
*.jspf text
18+
*.jspx text
19+
*.properties text
20+
*.sh text
21+
*.tld text
22+
*.txt text
23+
*.tag text
24+
*.tagx text
25+
*.xml text
26+
*.yml text
27+
28+
# These files are binary and should be left untouched
29+
# (binary is a macro for -text -diff)
30+
*.class binary
31+
*.dll binary
32+
*.ear binary
33+
*.gif binary
34+
*.ico binary
35+
*.jar binary
36+
*.jpg binary
37+
*.jpeg binary
38+
*.png binary
39+
*.so binary
40+
*.war binary
41+
42+
#linguist-documentation
43+
docs/* linguist-documentation

LICENSE

100644100755
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
* PureMVC MultiCore Framework for Java (Ported) / Legacy - Copyright © 2008-2010 Anthony Quinault
2-
* PureMVC - Copyright © 2006-2012 Futurescale, Inc.
1+
* PureMVC MultiCore Framework for Java - Copyright © 2019 [Saad Shams](https://www.linkedin.com/in/muizz)
2+
* PureMVC - Copyright © 2019 [Futurescale, Inc](http://futurescale.com).
33
* All rights reserved.
44

55
* Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
@@ -8,4 +8,4 @@
88
* Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
99
* Neither the name of Futurescale, Inc., PureMVC.org, nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
1010

11-
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
11+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

README.md

100644100755
Lines changed: 13 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,25 @@
1-
## [PureMVC](http://puremvc.github.com/) Java MultiCore Framework - LEGACY IMPLEMENTATION
2-
### For the current implementation go [here](https://github.com/PureMVC/puremvc-java-multicore-framework/wiki)
1+
## [PureMVC](http://puremvc.github.com/) Java MultiCore Framework
32

4-
PureMVC is a lightweight framework for creating applications based upon the classic [Model-View-Controller](http://en.wikipedia.org/wiki/Model-view-controller) design meta-pattern. This is a Java port of the [AS3 reference implementation of the MultiCore Version](https://github.com/PureMVC/puremvc-as3-multicore-framework/wiki). It supports [modular programming](http://en.wikipedia.org/wiki/Modular_programming) through the use of [Multiton](http://en.wikipedia.org/wiki/Multiton) Core actors instead of the [Singleton](http://en.wikipedia.org/wiki/Singleton_pattern)s used in the [Standard Version](https://github.com/PureMVC/puremvc-java-standard-framework/wiki).
3+
PureMVC is a lightweight framework for creating applications based upon the classic [Model-View-Controller](http://en.wikipedia.org/wiki/Model-view-controller) design meta-pattern. It supports [modular programming](http://en.wikipedia.org/wiki/Modular_programming) through the use of [Multiton](http://en.wikipedia.org/wiki/Multiton) Core actors instead of the [Singletons](http://en.wikipedia.org/wiki/Singleton_pattern) used in the [Standard](https://github.com/PureMVC/puremvc-java-standard-framework/wiki) Version.
54

6-
* [API Docs](http://puremvc.org/pages/docs/Java/legacy/multicore/doc)
7-
* [Discussion](http://forums.puremvc.org/index.php?board=60.0)
8-
* [Unit Tests](https://github.com/PureMVC/puremvc-java-multicore-unittests/wiki)
9-
* [Overview Presentation](http://puremvc.tv/#P002/)
10-
11-
## Demos
12-
* [Employee Admin](https://github.com/PureMVC/puremvc-java-demo-gwt-employeeadmin/wiki)
13-
* [Employee Admin Mobile](https://github.com/PureMVC/puremvc-java-demo-gwt-employeeadmin-mobile/wiki)
5+
* [API Docs](http://puremvc.org/pages/docs/Java/multicore)
6+
* [Unit Tests](http://puremvc.github.io/pages/images/screenshots/PureMVC-Shot-Java-Multicore-UnitTests.png)
7+
* [Discussion](http://forums.puremvc.org/index.php/board,60.0.html)
8+
* [Legacy Implementation](https://github.com/PureMVC/puremvc-java-multicore-framework/tree/1.0.9)
149

1510
## Utilities
1611
* [Pipes](https://github.com/PureMVC/puremvc-java-util-pipes/wiki)
1712

18-
## Status
19-
Legacy - [Version 1.0.9](https://github.com/PureMVC/puremvc-java-multicore-framework/blob/master/VERSION)
20-
2113
## Platforms / Technologies
22-
* [Java](http://en.wikipedia.org/wiki/Java_(programming_language\))
14+
* [Java](https://en.wikipedia.org/wiki/Java_(programming_language))
15+
* [Android](https://en.wikipedia.org/wiki/Android_(operating_system))
16+
17+
## Status
18+
Production - [Version 2.0](https://github.com/PureMVC/puremvc-java-multicore-framework/blob/master/VERSION)
2319

2420
## License
25-
* PureMVC MultiCore Framework for Java (Ported) / Legacy - Copyright © 2008-2010 Anthony Quinault
26-
* PureMVC - Copyright © 2006-2012 Futurescale, Inc.
21+
* PureMVC MultiCore Framework for Java - Copyright © 2019 [Saad Shams](https://www.linkedin.com/in/muizz)
22+
* PureMVC - Copyright © 2019 [Futurescale, Inc.](http://futurescale.com/)
2723
* All rights reserved.
2824

2925
* Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

VERSION

100644100755
Lines changed: 5 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,10 @@
1-
PureMVC MultiCore Framework for Java (Ported) - Legacy
1+
PureMVC MultiCore Framework for Java
22
--------------------------------------------------------------------------
33
Release Date: 03/07/19
44
Platform: Java
5-
Version: 1
5+
Version: 2
66
Revision: 0
7-
Minor: 9
8-
Author: Anthony Quinault <anthony.quinault@puremvc.org>
7+
Minor: 0
8+
Author: Saad Shams <saad.shams@puremvc.org>
99
--------------------------------------------------------------------------
10-
1.0.9
11-
- Moved to legacy. A brand new implementation of standard, multicore
12-
and pipes has been built which are more closely in alignment with
13-
the reference implementation.
14-
15-
1.0.8
16-
- Compatible with JavaFx
17-
18-
1.0.7
19-
- HashMap with synchronized block issue corrected
20-
21-
1.0.6
22-
- Christmas edition
23-
- Collection are more generic
24-
- Java 1.5
25-
- Emulation of as3 capabilty to have more or less parameters.
26-
27-
1.0
28-
- Initial Java MultiCore Port.
10+
2.0 - Brand new implementation of ported code, equivalent to AS3 MultiCore Version 1.0.5.

bin/PureMVC.jar

21.7 KB
Binary file not shown.

bin/PureMVC_Java_MultiCore-1.0.8.jar

-52.5 KB
Binary file not shown.

doc/allclasses-frame.html

Lines changed: 0 additions & 74 deletions
This file was deleted.

doc/allclasses-noframe.html

Lines changed: 0 additions & 74 deletions
This file was deleted.

0 commit comments

Comments
 (0)