IMPROVING JAVA SOFTWARE THROUGH PACKAGE STRUCTURE ANALYSIS
|
|
|
- Jonathan Ramsey
- 10 years ago
- Views:
Transcription
1 IMPROVING JAVA SOFTWARE THROUGH PACKAGE STRUCTURE ANALYSIS Edwin Hautus Compuware Europe P.O. Box The Netherlands Abstract Packages are an important mechanism to decompose Java programs. However, because packages are defined implicitly, it is not easy to develop a large application with a proper package structure. This article presents a tool that assists the programmer in developing a proper package structure through analysis and visualization. The tool indicates weak areas in package structures and allows human assisted refactoring of the source code based on the analysis. The article also introduces a new metric that is an indicator for the quality of the package architecture. Keywords Visualization, Software Re-engineering, Software Metrics, Refactoring, Component Based Development 1. Introduction Decomposing software systems into modules has been a hot topic from the early days of computer science. The benefits of a good modular decomposition were already recognized in the early seventies: product flexibility, comprehensibility and reduced development time [1]. The Java language allows for decomposition by means of the package construct. Every Java class is part of a package, and packages are hierarchically structured in a package tree. Packages can therefore be considered to be the modules of a Java program [2]. This paper presents the Package Structure Analysis Tool (PASTA). PASTA analyzes the modular structure of Java programs. The focus is on two particular aspects: avoiding cycles in the dependency graph and layering. Some of the problems that are found during analysis can be fixed immediately through refactoring of the source code from within PASTA. 2. Related Work Many researchers have investigated the analysis and visualization of programs for the purpose of comprehension. Recent efforts in the area of visualizing object-oriented programs include [3,4,5,6]. In [3], object oriented programming metrics are visualized in graphs using node color, positioning and size. In [4], software is visualized in 3D to assist refactoring. In [5], a Java exploration environment based on JavaBeans is presented. In [6], UML class diagrams are drawn based on class metrics. All of these efforts focus on class or method level analysis. Perhaps because a lot of research was originally focused on C++ and Smalltalk, Java packages have been largely ignored. My work on the contrary focuses specifically on packages. I think that packages are particularly important because they are best suited to define the high level architecture of java programs. Headway Review and SmallWorlds are two commercial products that allow dependencies in software to be analyzed. These tools provide a lot of information regarding dependencies, but they do not focus on layering, nor do they allow for refactoring of the code. 3. Package Structure Analysis 3.1 Acyclic Dependency Principle An important principle in object-oriented design is the Acyclic Dependency Principle, ADP [7]. It states that: The dependencies between packages must form no cycles. Whether or not a program should always confirm to this rule is a matter of purity. However, fact is that package structures with many cycles are in general more difficult to understand and to maintain than those that confirm to the ADP.
2 Figure 1 Layering for junit package 3.2 Layering A second well-known principle of system architecture is the layered architecture [2]. Szyperski makes a distinction between strict layering and non-strict layering [8]. In strict layering, the implementation of one layer may only depend on the layer directly below. In non-strict layering, any lower layer may be used. In Java programming practice, strict layering is uncommon. 3.3 Re-engineering ADP Packages If a package conforms to the APD, it is possible to reverse engineer a layering from the dependencies, using the following definition: The layer of a package is the maximum length of a dependency path to a package with no dependencies. This definition finds a layering with a maximum numbers of layers. See Figure 1 for an example of a layout generated by PASTA using this layering definition. 3.4 Re-engineering non-adp Packages can be difficult to comprehend the intended package structure. A simple way to deal with cyclic package structures is to simply ignore dependencies that are part of a cycle. This approach will be called simple layering. A more advanced algorithm that has been implemented with PASTA is smart layering. Smart layering is a heuristic algorithm to determine a layering that best represents the intended architecture. The smart layering of a package is defined as the simple layering corresponding to the package graph with undesirable dependencies removed. A set of undesirable dependencies is chosen in such a way that the remaining dependencies form an acyclic graph. There are of course many possible sets of undesirable dependencies that lead to an acyclic graph. The advanced layering chooses a set, which has a minimal total weight of the undesirable dependencies. The weight of a dependency is the number of references from one package to another. The weight is an indicator for the amount of work that is necessary to remove this dependency. Therefore, the smart layering algorithm finds an estimate for the amount of work that would be necessary to make a package structure acyclic. Unlike the junit example shown in Figure 1, most Java programs do not confirm to the ADP. In such cases, it
3 Figure 2 java Simple Layering Figure 3 java Smart Layering
4 3.5 Collapsed Classes Packages It is quite common for packages to contain both sub packages and types (classes or interfaces). If packages and types appear in the same package, PASTA combines the types into a collapsed classes package. Collapsed classes packages are treated like any other sub package: they are placed in a layer and are shown in the diagram. 3.6 The PASTA Metric In this section, we introduce a new metric for evaluating the quality of package structures. Packages structures with a lot of cycles are not as good as those that conform to the ADP. However, in some cases, cycles can be removed more easily than in others. 3.7 Refactoring PASTA visualizes package structures, but also allows changes to be made to the structure by drag and drop of types and sub packages from one package to another. Results are immediately shown in an updated UML diagram, allowing for 'what if' analysis. A future version will also allow dependencies to be reversed through the use of interfaces and abstract factories as described in [7]. When the user is satisfied with the resulting dependency structure, the changes can be applied to the source code. We therefore use the results of the smart-layering algorithm and define the PASTA metric for a package as: the weight of the undesirable dependencies between the sub packages divided by the total weight of the dependencies between the sub packages. The PASTA metric is an indicator for the percentage of the software that would need to be changed in order to make a package structure acyclic. Lower percentages are therefore an indication for a better modular structure. The PASTA metric for a package tree is defined as: the weight of all desirable dependencies in all packages divided by the total weight of the dependencies in all packages. An alternative definition for a package tree is to simply take the average of the PASTA metrics for all packages. However, the chosen definition has the advantage that high level packages have a higher weight, which corresponds to the idea that high level architecture is more important than low level architecture. I have applied the PASTA metric to a number of freely available sources and the results are shown in Table 1. Package PASTA Metric junit 0% org.apache.batik 0% org.apache.tools.ant 1% java 5% org.apache.jmeter 6% javax.swing 10% org.jboss 11% org.gjt.sp.jedit 18% java.awt 20% Table 1: PASTA metric applied 3.8 Case Study Figure 4: the PASTA application I illustrate the use of PASTA by examining the JDK1.4 java package, the core package of the Java language class library. From Figure 2, it is clear that the java package structure does not have a strict layering. In fact, the only package that is not used by other packages is the sql package. It is not possible to determine any intended layering from Figure 2. In Figure 3, smart layering has been applied, and it reveals the intended layering. The arrows that point up in Figure 3 are the undesirable dependencies that according to the PASTA should be fixed. The java.lang package is at the bottom. Other low level packages are java.io and java.util The higher level packages include java.beans, java.applet and java.awt. This corresponds to the idea that higher layers represent higher levels of abstraction. The analysis reveals some unexpected dependencies. For example, java.lang depends on java.awt. Further analysis with PASTA shows that this is the result of two classes: the SecurityManager in lang depends on the
5 AWTPermission in awt. Since AWTPermission is only used in awt and lang, moving AWTPermission to lang would solve this problem. AWTPermission should of course be renamed appropriately. Making lang independent from awt is important when users of java want to replace awt with their own user interface library. Note however that this fix does not solve the problem completely, as lang still depends on awt indirectly via other packages. Further analysis would be necessary to achieve this, and simply moving classes from one package to another can not solve all problems. 4. Conclusions I have presented a tool that can assist programmers and software architects with improving the modular structure of their Java software. Software Maintenance and Reengineering (CSMR 2001), IEEE Computer Society Press, March 2001, pages [5] M.-A. D. Storey, C. Best, J. Michaud, SHriMP Views: An Interactive and Customizable Environment for Software Exploration, Proc. of International Workshop on Program Comprehension (IWPC '2001), May [6] R. Kollman, M. Gogolla, Metric-Based Selective Representation of UML Diagrams, Proc. 6th European Conf. Software Maintenance and Reengineering (CSMR 2002). IEEE, Los Alamitos, [7] R.C. Martin, Design Principles and Design Patterns, [8] C. Szyperski, Component Software (New York: Addison-Wesley, New York, 1998) Software architects usually have a layered architecture in mind when designing applications. However, without proper tool support, package structures tend to become polluted with cyclic dependencies. I have presented an algorithm that can recover intended layering from polluted structures. The recovered layering also suggests which dependencies should be fixed. Fixing can be done partly using the tool itself with its refactoring capabilities. The presented algorithm can also be used to calculate a new metric for evaluating the high level modular structure of large Java programs. The metric provides a way to quickly evaluate the internal quality of large software products based on their source code. Future work includes more advanced refactoring proposals, support for other design principles, and integration with other tools. The tool is downloadable from the Compuware website. References [1] D.L. Parnas, Carnegie-Mellon University, On the criteria to be used in decomposing systems into modules, Communications of the ACM, Vol. 15, No. 12, 1972, pp [2] M.Fowler, Reducing Coupling, IEEE Software July August, 2001, pp [3] S. Demeyer, S. Ducasse and M. Lanza,, A Hybrid Reverse Engineering Platform Combining Metrics and Program Visualization, WCRE'99 Proceedings (6th Working Conference on Reverse Engineering), IEEE, October, 1999 [4] F. Steinbrückner, C. Lewerentz, Metrics Based Refactoring, Proc.of the 5th European Conference on
Program Understanding in Software Engineering
Taming the complexity: The need for program understanding in software engineering Raghvinder S. Sangwan, Ph.D. Pennsylvania State University, Great Valley School of Graduate Professional Studies Robert
VISUALIZATION APPROACH FOR SOFTWARE PROJECTS
Canadian Journal of Pure and Applied Sciences Vol. 9, No. 2, pp. 3431-3439, June 2015 Online ISSN: 1920-3853; Print ISSN: 1715-9997 Available online at www.cjpas.net VISUALIZATION APPROACH FOR SOFTWARE
The Class Blueprint A Visualization of the Internal Structure of Classes
The Class Blueprint A Visualization of the Internal Structure of Classes Michele Lanza Software Composition Group University Of Bern Bern, Switzerland [email protected] Stéphane Ducasse Software Composition
Understanding Software Static and Dynamic Aspects
Understanding Software Static and Dynamic Aspects Welf Löwe IPD, Universität Karlsruhe PF 6980, 76128 Karlsruhe Germany [email protected] Andreas Ludwig IPD, Universität Karlsruhe PF 6980, 76128 Karlsruhe
Component visualization methods for large legacy software in C/C++
Annales Mathematicae et Informaticae 44 (2015) pp. 23 33 http://ami.ektf.hu Component visualization methods for large legacy software in C/C++ Máté Cserép a, Dániel Krupp b a Eötvös Loránd University [email protected]
Software Engineering & Architecture
Software Engineering & Architecture 11. QUALITY METRICS AND VISUALIZATION Martin Kropp University of Applied Sciences Northwestern Switzerland Institute for Mobile and Distributed Systems References Some
Using Library Dependencies for Clustering
Using Library Dependencies for Clustering Jochen Quante Software Engineering Group, FB03 Informatik, Universität Bremen [email protected] Abstract: Software clustering is an established approach
EVALUATING METRICS AT CLASS AND METHOD LEVEL FOR JAVA PROGRAMS USING KNOWLEDGE BASED SYSTEMS
EVALUATING METRICS AT CLASS AND METHOD LEVEL FOR JAVA PROGRAMS USING KNOWLEDGE BASED SYSTEMS Umamaheswari E. 1, N. Bhalaji 2 and D. K. Ghosh 3 1 SCSE, VIT Chennai Campus, Chennai, India 2 SSN College of
Analysis and Design of Software Systems Practical Session 01. System Layering
Analysis and Design of Software Systems Practical Session 01 System Layering Outline Course Overview Course Objectives Computer Science vs. Software Engineering Layered Architectures Selected topics in
DEMONSTRATION OF THE SOFTVISION SOFTWARE VISUALIZATION FRAMEWORK
DEMONSTRATION OF THE SOFTVISION SOFTWARE VISUALIZATION FRAMEWORK Abstract Matti Sillanpää Nokia Research Center Helsinki, Finland E-mail: [email protected] Alexandru Telea Eindhoven University
Development/Maintenance/Reuse: Software Evolution in Product Lines
Development/Maintenance/Reuse: Software Evolution in Product Lines Stephen R. Schach Vanderbilt University, Nashville, TN, USA Amir Tomer RAFAEL, Haifa, Israel Abstract The evolution tree model is a two-dimensional
Génie Logiciel et Gestion de Projets. Evolution
Génie Logiciel et Gestion de Projets Evolution 1 Roadmap Evolution: definitions Re-engineering Legacy systems Reverse engineering Software Visualisation Re-engineering Patterns 2 Evolution: Definitions
Analyzing Java Software by Combining Metrics and Program Visualization
Analyzing Java Software by Combining Metrics and Program Visualization Tarja Systä Software Systems Laboratory Tampere University of Technology P.O. Box 553, FIN-33101 Tampere, Finland [email protected]
A Tool for Visual Understanding of Source Code Dependencies
The 16th IEEE International Conference on Program Comprehension A Tool for Visual Understanding of Source Code Dependencies Martin Pinzger, Katja Gräfenhain, Patrick Knab, and Harald C. Gall Department
Visualization of Software
Visualization of Software Jack van Wijk Plenary Meeting SPIder Den Bosch, March 30, 2010 Overview Software Vis Examples Hierarchies Networks Evolution Visual Analytics Application data Visualization images
sql-schema-comparer: Support of Multi-Language Refactoring with Relational Databases
sql-schema-comparer: Support of Multi-Language Refactoring with Relational Databases Hagen Schink Institute of Technical and Business Information Systems Otto-von-Guericke-University Magdeburg, Germany
Program Understanding with Code Visualization
Program Understanding with Code Visualization Arif Iftikhar Department of Computer Science National University of Computer and Emerging Sciences 852-B Faisal Town, Lahore, Pakistan [email protected]
A Social Network perspective of Conway s Law
A Social Network perspective of Conway s Law Chintan Amrit, Jos Hillegersberg, Kuldeep Kumar Dept of Decision Sciences Erasmus University Rotterdam {camrit, jhillegersberg, kkumar}@fbk.eur.nl 1. Introduction
Modeling Web Applications Using Java And XML Related Technologies
Modeling Web Applications Using Java And XML Related Technologies Sam Chung Computing & Stware Systems Institute Technology University Washington Tacoma Tacoma, WA 98402. USA [email protected] Yun-Sik
International Workshop on Field Programmable Logic and Applications, FPL '99
International Workshop on Field Programmable Logic and Applications, FPL '99 DRIVE: An Interpretive Simulation and Visualization Environment for Dynamically Reconægurable Systems? Kiran Bondalapati and
Software Design Document (SDD) Template
(SDD) Template Software design is a process by which the software requirements are translated into a representation of software components, interfaces, and data necessary for the implementation phase.
Lecture Overview. Object-Oriented Software Engineering: Using UML, Patterns, Java, and Software Development Processes. Prof. Dr.
COM 401 Software Engineering Lecture Overview Object-Oriented Software Engineering: Using UML, Patterns, Java, and Software Development Processes Prof. Dr. Halûk Gümüşkaya [email protected]
Aspect-Oriented Software Development based Solution for Intervention Concerns Problems:Case Study
Aspect-Oriented Software Development based Solution for Intervention Concerns Problems:Case Study Farhad Soleimanian Gharehchopogh Department of Computer Engineering, Science and Research Branch, Islamic
BugMaps-Granger: A Tool for Causality Analysis between Source Code Metrics and Bugs
BugMaps-Granger: A Tool for Causality Analysis between Source Code Metrics and Bugs César Couto 1,2, Pedro Pires 1, Marco Túlio Valente 1, Roberto S. Bigonha 1, Andre Hora 3, Nicolas Anquetil 3 1 Department
XFlash A Web Application Design Framework with Model-Driven Methodology
International Journal of u- and e- Service, Science and Technology 47 XFlash A Web Application Design Framework with Model-Driven Methodology Ronnie Cheung Hong Kong Polytechnic University, Hong Kong SAR,
CodeCrawler An Extensible and Language Independent 2D and 3D Software Visualization Tool
CodeCrawler An Extensible and Language Independent 2D and 3D Software Visualization Tool Michele Lanza Software Engineering Group Department of Informatics University of Zurich, Switzerland Stéphane Ducasse
Database Scheme Configuration for a Product Line of MPC-TOOLS
Database Scheme Configuration for a Product Line of MPC-TOOLS Benjamin Klöpper, Tobias Rust, Bernhard Vedder, and Wilhelm Dangelmaier Heinz Nixdorf Institute, University of Paderborn, Fürstenallee 11,
Design of Visual Repository, Constraint and Process Modeling Tool based on Eclipse Plug-ins
Design of Visual Repository, Constraint and Process Modeling Tool based on Eclipse Plug-ins Rushiraj Heshi Department of Computer Science and Engineering Walchand College of Engineering, Sangli Smriti
ARIS Design Platform Getting Started with BPM
Rob Davis and Eric Brabander ARIS Design Platform Getting Started with BPM 4y Springer Contents Acknowledgements Foreword xvii xix Chapter 1 An Introduction to BPM 1 1.1 Brief History of Business Process
STAN. Structure Analysis for Java. Version 2. White Paper. Fall 2009
STAN Structure Analysis for Java Version 2 White Paper Fall 2009 Abstract: This paper gives a brief introduction to structure analysis using STAN, a static code analysis tool bringing together Java development
Report - Marking Scheme
Report - Marking Scheme The report is marked out of 50 (19 individual + 31 group marks) by the supervisor from the School and the unit coordinator. Suggested break down: 1. Context out of 12 (7 individual
Information Visualization of Attributed Relational Data
Information Visualization of Attributed Relational Data Mao Lin Huang Department of Computer Systems Faculty of Information Technology University of Technology, Sydney PO Box 123 Broadway, NSW 2007 Australia
DiPro - A Tool for Probabilistic Counterexample Generation
DiPro - A Tool for Probabilistic Counterexample Generation Husain Aljazzar, Florian Leitner-Fischer, Stefan Leue, and Dimitar Simeonov University of Konstanz, Germany Abstract. The computation of counterexamples
Visual Analysis Tool for Bipartite Networks
Visual Analysis Tool for Bipartite Networks Kazuo Misue Department of Computer Science, University of Tsukuba, 1-1-1 Tennoudai, Tsukuba, 305-8573 Japan [email protected] Abstract. To find hidden features
CodeCrawler Lessons Learned in Building a Software Visualization Tool
CodeCrawler Lessons Learned in Building a Software Visualization Tool Michele Lanza [email protected] - Software Composition Group - University of Berne, Switzerland Abstract Software visualization tools
JRefleX: Towards Supporting Small Student Software Teams
JRefleX: Towards Supporting Small Student Software Teams Kenny Wong, Warren Blanchet, Ying Liu, Curtis Schofield, Eleni Stroulia, Zhenchang Xing Department of Computing Science University of Alberta {kenw,blanchet,yingl,schofiel,stroulia,xing}@cs.ualberta.ca
A Visualization Method to Support Impacts Analysis in Program Understanding
A Visualization Method to Support Impacts Analysis in Program Understanding Rita Noremi Bt Mohamad Centre for Advanced Software Engineering (CASE) Universiti Teknologi Malaysia Kuala Lumpur, Malaysia [email protected]
feature requirements engineering
feature requirements engineering Exploring Alternatives during Requirements Analysis John Mylopoulos, University of Toronto Goal-oriented requirements analysis techniques provide ways to refine organizational
Analysis Of Source Lines Of Code(SLOC) Metric
Analysis Of Source Lines Of Code(SLOC) Metric Kaushal Bhatt 1, Vinit Tarey 2, Pushpraj Patel 3 1,2,3 Kaushal Bhatt MITS,Datana Ujjain 1 [email protected] 2 [email protected] 3 [email protected]
Modernized and Maintainable Code. Frank Weil, Ph.D. UniqueSoft, LLC
Modernized and Maintainable Code Frank Weil, Ph.D. UniqueSoft, LLC UniqueSoft is a provider of next-generation software development tools and services specializing in modernizing legacy software using
A Framework for Software Architecture Visualization and Evaluation
A Framework for Software Architecture Visualization and Evaluation Dr. S. Margret Anouncia Merin Cherian Anubhuti Parija Professor, M.S Software Engg M.S Software Engg School of Computing Sciences VITU,
Automated Test Approach for Web Based Software
Automated Test Approach for Web Based Software Indrajit Pan 1, Subhamita Mukherjee 2 1 Dept. of Information Technology, RCCIIT, Kolkata 700 015, W.B., India 2 Dept. of Information Technology, Techno India,
An Open Framework for Reverse Engineering Graph Data Visualization. Alexandru C. Telea Eindhoven University of Technology The Netherlands.
An Open Framework for Reverse Engineering Graph Data Visualization Alexandru C. Telea Eindhoven University of Technology The Netherlands Overview Reverse engineering (RE) overview Limitations of current
Abstraction in Computer Science & Software Engineering: A Pedagogical Perspective
Orit Hazzan's Column Abstraction in Computer Science & Software Engineering: A Pedagogical Perspective This column is coauthored with Jeff Kramer, Department of Computing, Imperial College, London ABSTRACT
How To Understand Version Control Knowledge From A Reverse Engineering Perspective
A Reverse Engineering Approach to Support Software Maintenance: Version Control Knowledge Extraction Xiaomin Wu University of Victoria [email protected] Adam Murray University of Ottawa [email protected]
Software visualization. Why visualization?
Software visualization Tudor Gîrba www.tudorgirba.com Software Visualization is the use of typography, graphic design, animation, and cinematography with human-computer interaction and computer graphics
PHP FRAMEWORK FOR DATABASE MANAGEMENT BASED ON MVC PATTERN
PHP FRAMEWORK FOR DATABASE MANAGEMENT BASED ON MVC PATTERN Chanchai Supaartagorn Department of Mathematics Statistics and Computer, Faculty of Science, Ubon Ratchathani University, Thailand [email protected]
Exploiting Dynamic Information in IDEs Eases Software Maintenance
Exploiting Dynamic Information in IDEs Eases Software Maintenance David Röthlisberger Software Composition Group, University of Bern, Switzerland [email protected] Abstract The integrated development
An Eclipse Plug-In for Visualizing Java Code Dependencies on Relational Databases
An Eclipse Plug-In for Visualizing Java Code Dependencies on Relational Databases Paul L. Bergstein, Priyanka Gariba, Vaibhavi Pisolkar, and Sheetal Subbanwad Dept. of Computer and Information Science,
Extend Table Lens for High-Dimensional Data Visualization and Classification Mining
Extend Table Lens for High-Dimensional Data Visualization and Classification Mining CPSC 533c, Information Visualization Course Project, Term 2 2003 Fengdong Du [email protected] University of British Columbia
Classes and Objects. Agenda. Quiz 7/1/2008. The Background of the Object-Oriented Approach. Class. Object. Package and import
Classes and Objects 2 4 pm Tuesday 7/1/2008 @JD2211 1 Agenda The Background of the Object-Oriented Approach Class Object Package and import 2 Quiz Who was the oldest profession in the world? 1. Physician
Supporting Software Development Process Using Evolution Analysis : a Brief Survey
Supporting Software Development Process Using Evolution Analysis : a Brief Survey Samaneh Bayat Department of Computing Science, University of Alberta, Edmonton, Canada [email protected] Abstract During
An Architecture to Support Model Driven Software Visualization
An Architecture to Support Model Driven Software Visualization R. Ian Bull and Margaret-Anne Storey University of Victoria British Columbia, Canada {irbull,[email protected] Marin Litoiu IBM Markham Ontario
Gadget: A Tool for Extracting the Dynamic Structure of Java Programs
Gadget: A Tool for Extracting the Dynamic Structure of Java Programs Juan Gargiulo and Spiros Mancoridis Department of Mathematics & Computer Science Drexel University Philadelphia, PA, USA e-mail: gjgargiu,smancori
Open Source Software: How Can Design Metrics Facilitate Architecture Recovery?
Open Source Software: How Can Design Metrics Facilitate Architecture Recovery? Eleni Constantinou 1, George Kakarontzas 2, and Ioannis Stamelos 1 1 Computer Science Department Aristotle University of Thessaloniki
The «SQALE» Analysis Model An analysis model compliant with the representation condition for assessing the Quality of Software Source Code
The «SQALE» Analysis Model An analysis model compliant with the representation condition for assessing the Quality of Software Source Code Jean-Louis Letouzey DNV IT Global Services Arcueil, France [email protected]
Axiomatic design of software systems
Axiomatic design of software systems N.P. Suh (1), S.H. Do Abstract Software is playing an increasingly important role in manufacturing. Many manufacturing firms have problems with software development.
Filtering Noisy Contents in Online Social Network by using Rule Based Filtering System
Filtering Noisy Contents in Online Social Network by using Rule Based Filtering System Bala Kumari P 1, Bercelin Rose Mary W 2 and Devi Mareeswari M 3 1, 2, 3 M.TECH / IT, Dr.Sivanthi Aditanar College
A WBS-Based Plan Changeability Measurement Model for Reducing Software Project Change Risk
A WBS-Based Plan Changeability Measurement Model for Reducing Software Project Change Risk Sen-Tarng Lai Abstract In software development process, it is necessary to face challenge for plan changes. In
Keywords Aspect-Oriented Modeling, Rule-based graph transformations, Aspect, pointcuts, crosscutting concerns.
Volume 4, Issue 5, May 2014 ISSN: 2277 128X International Journal of Advanced Research in Computer Science and Software Engineering Research Paper Available online at: www.ijarcsse.com Functional and Non-Functional
Identifying Clusters of Concepts in a Low Cohesive Class for Extract Class Refactoring Using Metrics Supplemented Agglomerative Clustering Technique
IJCSI International Journal of Computer Science Issues, ol. 8, Issue 5, No 2, September 2011 www.ijcsi.org 185 Identifying Clusters of Concepts in a Low Cohesive Class for Extract Class Refactoring Using
KWIC Exercise. 6/18/2007 2007, Spencer Rugaber 1
KWIC Exercise On a subsequent slide, you will be given the description of a simple program for which you will be asked to devise two architectures. For the purposes of this exercise, you should imagine
BugMaps-Granger: a tool for visualizing and predicting bugs using Granger causality tests
Couto et al. Journal of Software Engineering Research and Development 2014, 2:1 SOFTWARE Open Access BugMaps-Granger: a tool for visualizing and predicting bugs using Granger causality tests Cesar Couto
Fundamentals of Java Programming
Fundamentals of Java Programming This document is exclusive property of Cisco Systems, Inc. Permission is granted to print and copy this document for non-commercial distribution and exclusive use by instructors
Treemaps for Search-Tree Visualization
Treemaps for Search-Tree Visualization Rémi Coulom July, 2002 Abstract Large Alpha-Beta search trees generated by game-playing programs are hard to represent graphically. This paper describes how treemaps
AN EFFICIENT STRATEGY OF AGGREGATE SECURE DATA TRANSMISSION
INTERNATIONAL JOURNAL OF REVIEWS ON RECENT ELECTRONICS AND COMPUTER SCIENCE AN EFFICIENT STRATEGY OF AGGREGATE SECURE DATA TRANSMISSION K.Anusha 1, K.Sudha 2 1 M.Tech Student, Dept of CSE, Aurora's Technological
A Framework of Model-Driven Web Application Testing
A Framework of Model-Driven Web Application Testing Nuo Li, Qin-qin Ma, Ji Wu, Mao-zhong Jin, Chao Liu Software Engineering Institute, School of Computer Science and Engineering, Beihang University, China
A Visualization Approach for Bug Reports in Software Systems
, pp. 37-46 http://dx.doi.org/10.14257/ijseia.2014.8.10.04 A Visualization Approach for Bug Reports in Software Systems Maen Hammad 1, Somia Abufakher 2 and Mustafa Hammad 3 1, 2 Department of Software
A Business Process Driven Approach for Generating Software Modules
A Business Process Driven Approach for Generating Software Modules Xulin Zhao, Ying Zou Dept. of Electrical and Computer Engineering, Queen s University, Kingston, ON, Canada SUMMARY Business processes
EXTENDED ANGEL: KNOWLEDGE-BASED APPROACH FOR LOC AND EFFORT ESTIMATION FOR MULTIMEDIA PROJECTS IN MEDICAL DOMAIN
EXTENDED ANGEL: KNOWLEDGE-BASED APPROACH FOR LOC AND EFFORT ESTIMATION FOR MULTIMEDIA PROJECTS IN MEDICAL DOMAIN Sridhar S Associate Professor, Department of Information Science and Technology, Anna University,
Curriculum Vitae. Zhenchang Xing
Curriculum Vitae Zhenchang Xing Computing Science Department University of Alberta, Edmonton, Alberta T6G 2E8 Phone: (780) 433 0808 E-mail: [email protected] http://www.cs.ualberta.ca/~xing EDUCATION
Decomposition into Parts. Software Engineering, Lecture 4. Data and Function Cohesion. Allocation of Functions and Data. Component Interfaces
Software Engineering, Lecture 4 Decomposition into suitable parts Cross cutting concerns Design patterns I will also give an example scenario that you are supposed to analyse and make synthesis from The
Comprehending Software Architecture using a Single-View Visualization
UCRL-CONF-227293 Comprehending Software Architecture using a Single-View Visualization T. Panas, T. G. W. Epperly, D. J. Quinlan, A. Saebjoernsen, R. W. Vuduc January 17, 2007 12th IEEE Int. Conference
Fault Localization in a Software Project using Back- Tracking Principles of Matrix Dependency
Fault Localization in a Software Project using Back- Tracking Principles of Matrix Dependency ABSTRACT Fault identification and testing has always been the most specific concern in the field of software
