You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The skeletal implementation pattern is a software design pattern consisting of defining an abstract class that provides a partial interface implementation. However, since Java allows only single class inheritance, if implementers decide to extend a skeletal implementation, they will not be allowed to extend any other class. Also, discovering the skeletal implementation may require a global analysis. Java 8 enhanced interfaces alleviate these problems by allowing interfaces to contain (default) method implementations, which implementers inherit. Java classes are then free to extend a different class, and a separate abstract class is no longer needed; developers considering implementing an interface need only examine the interface itself. Both of these benefits improve software modularity.
8
+
<descriptionurl="http://cuny.is/streams">
9
+
The Java 8 Stream API sets forth a promising new programming model that incorporates functional-like, MapReduce-style features into a mainstream programming language. However, using streams efficiently may involve subtle considerations.
10
10
11
-
This prototype refactoring plug-in for Eclipse represents ongoing work in developing an automated refactoring tool that would assist developers in taking advantage of the enhanced interface feature for their legacy Java software.
11
+
This tool consists of automated refactoring research prototype plug-ins for Eclipse that assists developers in writing optimal stream client code in a semantics-preserving fashion. Refactoring preconditions and transformations for automatically determining when it is safe and possibly advantageous to convert a sequential stream to parallel and improve upon already parallel streams are included. The approach utilizes both WALA and SAFE.
12
12
</description>
13
13
14
14
<copyright>
15
-
2016 Raffi Khatchadourian. All rights reserved.
15
+
2018 Raffi Khatchadourian. All rights reserved.
16
16
</copyright>
17
17
18
18
<license>
@@ -222,8 +222,10 @@ any resulting litigation.
222
222
</license>
223
223
224
224
<url>
225
-
<updatelabel="Migrate Skeletal Implementation to Interface Refactoring Update Site"url="https://raw.githubusercontent.com/khatchad/master/Migrate-Skeletal-Implementation-to-Interface-Refactoring/edu.cuny.hunter.streamrefactoring.updatesite/"/>
0 commit comments