Microsoft Word - ITECH5403 Assignment XXXXXXXXXXdocx ITECH 5403: Comparative Programming Languages (1907) CRICOS Provider No. 00103D ITECH5403 Assignment XXXXXXXXXXdocx Page 1 of 6 Assignment 2:...

1 answer below »
I need just coding nothing else. I gave that someone India but they fooled me send me screenshots writing it in the notepad and codes are not running, I already paid them. I already failed in this subject before. I need it asap. I am doing this subject 2nd time. Please make it right. I am giving you assignment from previous semester just for an idea.


Microsoft Word - ITECH5403 Assignment 2 1907.docx ITECH 5403: Comparative Programming Languages (1907) CRICOS Provider No. 00103D ITECH5403 Assignment 2 1907.docx Page 1 of 6 Assignment 2: Parallel Implementation Overview This assignment will test your skills in programming applications to specification in a number of different programming languages and is worth 20% of your non-invigilated (type A) marks for this course. Completion of this assignment requires the:  Understanding of various programming languages’ features  Understanding of Implementing a program in multiple languages Timelines and Expectations Percentage Value of Task: 20% Due: 04:00 pm Friday the 31st May 2019 (week 11) Minimum time expectation: 20 hours Assignment Overview You are asked to create a program for a pizza shop – however, as this is a comparative languages course, you will be creating the same application in the following programming languages:  C  Python,  Java and  Lisp As you implement the application in each language, you should keep notes on the features of the languages used, which you found useful, as well as any issues or complications which arose due to the complexity or lack of any language features. A brief discussion based on these programming features for each individual language accompanying each implementation is required. Finally, a comparative overview of the languages highlighting applicability based on your experience in the design, implementation and debugging of your code is also required. If you foresee or encounter any complications, you may opt to implement or incorporate additional language features which may be lacking, i.e. data structures. This can be done via: CRICOS Provider No. 00103D ITECH5403 Assignment 2 1907.docx Page 2 of 6  Your own implementation,  Through libraries, or  Via the incorporation of existing source code. You can use code found on the Internet, but use of any existing code must be referenced. Assessment Details Sab, the owner of a new Pizza and Pasta shop, is opening a takeaway service for selling delicious Pizza and Pasta to the customers. She wants to offer some packages to interested customers to promote her business. To do so she is offering the following packages: 1. 1 large Pizza = 12 AUD 2. 2 large Pizzas = 22 AUD 3. N large pizzas = N*10 AUD, where N>=3, and the customer will receive 1 garlic bread for every three pizzas [For example, if a customer is interested to buy 10 large pizzas, Sab will provide 3 complementary garlic bread for 100 AUD] 4. 1 large pasta = 8 AUD 5. 2 large pastas = 15 AUD 6. M large pastas = M*7 AUD, where M>=3, and the customer will receive 1.25 Liter soft drinks for every 3 pastas [For example, if a customer is interested to buy 6 large pastas, Sab will provide 2 complementary 1.25 liter soft drinks for 42 AUD] 7. For every 3 pizzas AND 3 pastas, Sab will give a small box of Baklava (a famous dessert item) in addition to garlic-bread and 1.5-liter soft drinks. You have agreed to design and develop a small console program for Sab, enabling her to select the appropriate item and the package, and calculate the corresponding cost. Once an order is processed, the program will return to the menu ready to commence another order. This payment information should display:  total payment amounts received for pizza order  total payment amounts received for pasta order  total amount of pizzas and pastas sold in that session* *A session indicates the duration Sab is using the program after opening the program. There is no need for this data to persist once the program has stopped running. CRICOS Provider No. 00103D ITECH5403 Assignment 2 1907.docx Page 3 of 6 The owner wants the system to be flexible so that she can include additional items and packages at a later date without having to rewrite the entire program. This means you will need to use an interface for processing payments, and polymorphism for the various food items classes, so that new and different packages may be added at a later date with minimal updates to the code. She asked that you provide her with some documentation before you commence coding, so that she is able to verify that the program you intend to code will address her requirements. She would like to see the use cases to summarize the requirements in written format, as well as use case diagrams, class diagrams and sequence diagrams. Suggested Development Environments Codeblocks for C '99 Code::Blocks can be downloaded from http://www.codeblocks.org/downloads/binaries To create a new C project is: When you create a project, choose File | New and then Console Application, and then choose C as the programming language. IDLE for Python: Python, including the IDLE development environment, can be downloaded from https://www.python.org/downloads/ Eclipse for Java 7 or Java 8 Eclipse may be freely downloaded from http://www.eclipse.org/downloads/ Eclipse does not come with the Java JDK, which must the downloaded separately from http://www.oracle.com/technetwork/java/javase/downloads/index.html Ensure that your Eclipse type and Java type match – i.e. 32-bit Java for 32-bit Eclipse, or 64-bit Java for 64-bit Eclipse. If you mix and match it won't work. GNU CLisp for Common Lisp CLISP 2.49 can be sourced from http://sourceforge.net/projects/clisp/files/latest/download Any good text editor would be suitable for writing the source code. Additional Documentation – Language Suitability Report The design of each programming language incorporates a number of decisions about the language which make it more or less suitable for given tasks. During your implementation of the pizza program in each of the languages, you should make notes about the language features which exist or do not exist, and which have therefore made program development easier or more difficult. Where a language has not provided a feature which would have been useful to the implementation of the program, or where the complexity of using a language feature has been high you should remark upon it and briefly discuss a mechanism or feature of another language which would have made development easier. CRICOS Provider No. 00103D ITECH5403 Assignment 2 1907.docx Page 4 of 6 After completing the application in all languages (or as many as you can), discuss the comparative ease of implementation in terms of the design, implementation and debugging for each programming language, including how robustness issues were addressed. Submission and Marking Process You must supply your program source code files and language suitability report documentation in as single compressed archive called: ITECH5403_Assignment_2__.zip You may supply your programming language suitability report in either Word or LibreOffice/OpenOffice format in which the document can be edited – no proprietary Mac-specific formats, please. Assignments will be marked on the basis of fulfillment of the requirements and the quality of the work. In addition to the marking criteria, marks may be deducted for failure to comply with the assignment requirements, including (but not limited to):  Incomplete implementation(s), and  Incomplete submissions (e.g. missing files), and  Poor spelling and grammar. Submit your assignment (all program source files plus your discussion document) to the Assignment 2 Upload location on Moodle before the deadline of Friday of Week 11 at 4 pm. The mark distribution for this assignment is explained on the next page. CRICOS Provider No. 00103D ITECH5403 Assignment 2 1907.docx Page 5 of 6 Marking Criteria/Rubric Assignment 2 – Parallel Implementations Student name: Student ID: Requirement Available Marks Student Mark Implementation of the pizza shop program in the C programming language. Areas of note include: - o Use of data structures o Robust input handling which does not cause program termination if provided with bad data (i.e. program expects a number, gets given alphanumerical data). Discussion on implementation: o Language features, issues and suitability. 15 5 Implementation of the pizza shop program in the Python programming language. Areas of note include: o Python Standard library o List mechanisms Discussion on implementation: o Language features, issues and suitability 15 5 Implementation of the pizza shop program in the Java programming language. Areas of note include: o Object orientation mechanism/method calls o Error handling o Standard Java libraries Discussion on implementation o Language features, issues and suitability 15 5 Implementation of the pizza shop program in the Lisp programming language. Areas of note include the Lisp: o Use of recursion o Lists o Inbuilt data structures Discussion on implementation o Language features, issues and suitability 15 5 Documentation and discussion of the comparative ease of implementation (design/implement/ debug) in each programming language, including how robustness issues were addressed. 15 Spelling and grammar 5 Total /100 Contribution to unit mark (out of 20%) % Feedback Marks will be uploaded in fdlGrades and a completed marking guide provided in Moodle within 2 weeks of assignment submission. CRICOS Provider No. 00103D ITECH5403 Assignment 2 1907.docx Page 6 of 6 Plagiarism: Plagiarism is the presentation of the expressed thought or work of another person as though it is one's own without properly acknowledging that person. You must not allow other students to copy your work and must take care to safeguard against this happening. More information about the plagiarism policy and procedure for the university can be found at http://federation.edu.au/students/learning-and- study/online-help-with/plagiarism.
Answered Same DayJun 04, 2021ITECH5403

Answer To: Microsoft Word - ITECH5403 Assignment XXXXXXXXXXdocx ITECH 5403: Comparative Programming Languages...

Samrakshini R answered on Jun 05 2021
134 Votes
Sab shop/Sab_C/bin/Debug/Sab_pizza_pasta.exe
Sab shop/Sab_C/main.c#include
#include
float pizza(int n)
{
float price=0.0;
if(n==1)
{
price=12;
printf("The number of pizzas=%d\n",n);
printf("The cost for pizzas=%f\n",price);
return price;
}
if(n==2)
{
price=22;
printf("The number of pizzas=%d\n",n);
printf("The cost for pizzas=%f\n",price);
return price;
}
if(n>2)
{
price=n*10;
printf("The number of pizzas=%d\n",n);
printf("The cost for pizzas=%f\n",price);
printf("You get %d complementary garlic breads\n",(n/3));
return price;
}
}
float pasta(int n)
{
float price=0.0;
if(n==1)
{
price=8;
printf("The number of pastas=%d\n",n);
printf("The cost for pastas=%f\n",price);
return price;
}
if(n==2)
{
price=15;
printf("The number of pastas=%d\n",n);
printf("The cost for pastas=%f\n",price);
return price;
}
if(n>2)
{
price=n*7;
printf("The number of pastas=%d\n",n);
printf("The cost for pastas=%f\n",price);
printf("You get %d complementary 1.25L soft drinks\n",(n/3));
return price;
}
}
int min(int a,int b)
{
if(a return a;
else
return b;
}
int main()
{
float a_piz=0.0,a_pas=0.0;
int piz,pas,sess_piz=0,sess_pas=0;
int ch=0;
while(1)
{
printf("Enter 1.Pizza 2.Pasta 3.Exit");
scanf("%d",&ch);
switch(ch)
{
case 1:
printf("Enter the number of pizzas:");
scanf("%d",&piz);
a_piz+=pizza(piz);
sess_piz+=piz;
break;
case 2:
printf("Enter the number of pastas:");
scanf("%d",&pas);
a_pas+=pasta(pas);
sess_pas+=pas;
break;
case 3:
printf("Total amount for pizzas=%f\n",a_piz);
printf("Total amount for pizzas=%f\n",a_pas);
printf("Session total=%f\n",(a_piz+a_pas));
printf("You get %d Baklawas complementary\n",min(sess_pas/3,sess_piz/3));
exit(0);
default:printf("Sorry!Wrong choice");
}
}
return 1;
}
Sab shop/Sab_C/obj/Debug/main.o
Sab shop/Sab_C/Sab_pizza_pasta.cbp
    
    
        
        
        
        
            
                
                
                
                
                
                    
                
            
            
                
                
                
                
                
                    
                
                
                    
                
            
        
        
            
        
        
            
        
        
            
            
            
        
    
Sab shop/Sab_C/Sab_pizza_pasta.layout
    
    
        
            
        
    
Sab shop/Sab_java/.metadata/.lock
Sab shop/Sab_java/.metadata/.log!SESSION 2019-06-05 12:48:19.758 -----------------------------------------------
eclipse.buildId=4.7.0.I20170612-0950
java.version=1.8.0_144
java.vendor=Oracle Corporation
BootLoader constants: OS=win32, ARCH=x86_64, WS=win32, NL=en_US
Framework arguments: -product org.eclipse.epp.package.jee.product
Command-line arguments: -os win32 -ws win32 -arch x86_64 -product org.eclipse.epp.package.jee.product
!ENTRY org.eclipse.egit.ui 2 0 2019-06-05 12:49:49.528
!MESSAGE Warning: The environment variable HOME is not set. The following directory will be used to store the Git
user global configuration and to define the default location to store repositories: 'C:\Users\DELL'. If this is
not correct please set the HOME environment variable and restart Eclipse. Otherwise Git for Windows and
EGit might behave differently since they see different configuration options.
This warning can be switched off on the Team > Git > Confirmations and Warnings preference page.
!ENTRY org.eclipse.jface.text 2 0 2019-06-05 12:54:36.495
!MESSAGE Duplicate template id: 'org.eclipse.wst.xslt.templates.xpath.number'
!ENTRY org.eclipse.jface.text 2 0 2019-06-05 12:54:36.547
!MESSAGE Duplicate template id: 'org.eclipse.wst.xslt.templates.xpath.round'
!ENTRY org.eclipse.jface.text 2 0 2019-06-05 12:54:36.765
!MESSAGE Duplicate template id: 'org.eclipse.wst.xslt.templates.xpath.number'
!ENTRY org.eclipse.jface.text 2 0 2019-06-05 12:54:36.769
!MESSAGE Duplicate template id: 'org.eclipse.wst.xslt.templates.xpath.round'
Sab shop/Sab_java/.metadata/.mylyn/.taskListIndex/segments_1
Sab shop/Sab_java/.metadata/.mylyn/.taskListIndex/write.lock
Sab shop/Sab_java/.metadata/.mylyn/.tasks.xml.zip
tasklist.xml

Sab shop/Sab_java/.metadata/.mylyn/repositories.xml.zip
repositories.xml

Sab shop/Sab_java/.metadata/.mylyn/tasks.xml.zip
tasklist.xml

Sab shop/Sab_java/.metadata/.plugins/org.eclipse.core.resources/.history/18/40c6c67b62870019126fa6ef0cb248c6eclipse.preferences.version=1
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8
org.eclipse.jdt.core.compiler.compliance=1.8
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
org.eclipse.jdt.core.compiler.source=1.8
Sab shop/Sab_java/.metadata/.plugins/org.eclipse.core.resources/.history/69/40a56d9865870019126fa6ef0cb248c6import java.io.BufferedReader;
import java.util.Scanner;
public class Sab {
    
    static int pizza(int n)
    {
        int price=0;
        if(n==1)
        {
            price=12;
            System.out.println("Price of pizza="+price);
            return price;
        }
        if(n==2)
        {
            price=22;
            System.out.println("Price of pizza="+price);
            return price;
        }
        if(n>2)
        {
            price=n*10;
            System.out.println("Price of pizza="+price);
            System.out.println("You get complementary garlic breads: "+(int)(n/3));
            return price;
        }
        return 0;
    }
    static int pasta(int n)
    {
        int price=0;
        if(n==1)
        {
            price=8;
            System.out.println("Price of pasta="+price);
            return price;
        }
        if(n==2)
        {
            price=15;
            System.out.println("Price of pasta="+price);
            return price;
        }
        if(n>2)
        {
            price=n*7;
            System.out.println("Price of pasta="+price);
            System.out.println("You get complementary 1.25L soft drinks: "+(int)(n/3));
            return price;
        }
        return 0;
    }
    
    static int min(int a,int b)
    {
        if(a            return a;
        else
            return
b;
    }
    public static void main(String args[])
    {
        int ch=0;
        int piz_pr=0,pas_pr=0,piz,pas,t_piz=0,t_pas=0;
        Scanner sc=new Scanner(System.in);
        
        while(true)
        {
            System.out.println("Enter 1.pizza 2.pasta 3.exit");
            ch=sc.nextInt();
            if(ch==1) {
                System.out.println("Enter no. of pizzas");
            piz=sc.nextInt();
            t_piz+=piz;
            piz_pr+=pizza(piz);
            }
            if(ch==2)
            {
                System.out.println("Enter no. of pastas:");
                pas=sc.nextInt();
                t_pas+=pas;
                pas_pr+=pasta(pas);
            }
            if(ch==3)
            {
                System.out.println("Total for pizzas="+piz_pr);
                System.out.println("Total for pastas="+pas_pr);
                System.out.println("Total price="+(piz_pr+pas_pr));
                System.out.println("You get complementary Baklawas="+min(t_piz/3,t_pas/3));
            }
        }
    }
}
Sab shop/Sab_java/.metadata/.plugins/org.eclipse.core.resources/.history/87/0092061d64870019126fa6ef0cb248c6
public class Sab {
}
Sab shop/Sab_java/.metadata/.plugins/org.eclipse.core.resources/.history/f8/508b768065870019126fa6ef0cb248c6
public class Sab {
    
    int pizza(int n)
    {
        int price=0;
        if(n==1)
        {
            price=12;
            System.out.println("Price of pizza="+price);
            return price;
        }
        if(n==2)
        {
            price=22;
            System.out.println("Price of pizza="+price);
            return price;
        }
        if(n>2)
        {
            price=n*10;
            System.out.println("Price of pizza="+price);
            System.out.println("You get complementary garlic breads: "+(int)(n/3));
            return price;
        }
        return 0;
    }
    int pasta(int n)
    {
        int price=0;
        if(n==1)
        {
            price=8;
            System.out.println("Price of pasta="+price);
            return price;
        }
        if(n==2)
        {
            price=15;
            System.out.println("Price of pasta="+price);
            return price;
        }
        if(n>2)
        {
            price=n*7;
            System.out.println("Price of pasta="+price);
            System.out.println("You get complementary 1.25L soft drinks: "+(int)(n/3));
            return price;
        }
        return 0;
    }
    public static void main(String args[])
    {
        
    }
}
Sab shop/Sab_java/.metadata/.plugins/org.eclipse.core.resources/.history/fd/c0df5ef962870019126fa6ef0cb248c6
Sab shop/Sab_java/.metadata/.plugins/org.eclipse.core.resources/.projects/Sab_shop/.indexes/af/history.index
Sab shop/Sab_java/.metadata/.plugins/org.eclipse.core.resources/.projects/Sab_shop/.indexes/e4/history.index
Sab shop/Sab_java/.metadata/.plugins/org.eclipse.core.resources/.projects/Sab_shop/.markers
Sab shop/Sab_java/.metadata/.plugins/org.eclipse.core.resources/.projects/Sab_shop/org.eclipse.jdt.core/state.dat
Sab shop/Sab_java/.metadata/.plugins/org.eclipse.core.resources/.root/.indexes/history.version
Sab shop/Sab_java/.metadata/.plugins/org.eclipse.core.resources/.root/.indexes/properties.index
Sab shop/Sab_java/.metadata/.plugins/org.eclipse.core.resources/.root/.indexes/properties.version
Sab shop/Sab_java/.metadata/.plugins/org.eclipse.core.resources/.root/1.tree
Sab shop/Sab_java/.metadata/.plugins/org.eclipse.core.resources/.safetable/org.eclipse.core.resources@±‹�#¼���%–磓¾�#master table
#Wed Jun 05 13:14:33 IST 2019
clearDelta_org.eclipse.debug.core=true
clearDelta_org.eclipse.debug.ui=true
/.tree=1
clearDelta_org.eclipse.mylyn.tasks.ui=true
clearDelta_org.eclipse.jdt.core=true
clearDelta_org.eclipse.jdt.debug.ui=true
clearDelta_org.eclipse.wst.validation=true
clearDelta_org.eclipse.pde.api.tools=true
clearDelta_org.eclipse.jdt.launching=true
deltaExpiration_org.eclipse.wst.jsdt.core=1559720673296
deltaExpiration_org.eclipse.jdt.core=1559720673296
clearDelta_org.eclipse.rse.core=true
clearDelta_org.eclipse.rse.files.ui=true
clearDelta_org.eclipse.pde.core=true
clearDelta_org.eclipse.jdt.debug=true
ÀXûó#¼���QóŒ{»wÆ@±‹�#¼���%–磓¾�#master table
#Wed Jun 05 13:14:33 IST 2019
clearDelta_org.eclipse.debug.core=false
clearDelta_org.eclipse.debug.ui=false
/.tree=1
clearDelta_org.eclipse.mylyn.tasks.ui=false
clearDelta_org.eclipse.jdt.core=false
clearDelta_org.eclipse.jdt.debug.ui=false
clearDelta_org.eclipse.wst.validation=false
clearDelta_org.eclipse.pde.api.tools=false
clearDelta_org.eclipse.jdt.launching=false
deltaExpiration_org.eclipse.wst.jsdt.core=1559720673296
deltaExpiration_org.eclipse.jdt.core=1559720673296
clearDelta_org.eclipse.rse.core=false
clearDelta_org.eclipse.rse.files.ui=false
clearDelta_org.eclipse.pde.core=false
clearDelta_org.eclipse.jdt.debug=false
clearDelta_org.eclipse.wst.jsdt.core=false
ÀXûó#¼���QóŒ{»wÆ
Sab shop/Sab_java/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.core.resources.prefseclipse.preferences.version=1
version=1
Sab shop/Sab_java/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.debug.ui.prefseclipse.preferences.version=1
org.eclipse.debug.ui.PREF_LAUNCH_PERSPECTIVES=\r\n\r\n
preferredTargets=default\:default|
Sab shop/Sab_java/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.epp.logging.aeri.ide.prefseclipse.preferences.version=1
resetSendMode=KEEP
resetSendModeOn=0
sendMode=NOTIFY
Sab shop/Sab_java/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.jdt.core.prefseclipse.preferences.version=1
org.eclipse.jdt.core.codeComplete.visibilityCheck=enabled
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8
org.eclipse.jdt.core.compiler.compliance=1.8
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
org.eclipse.jdt.core.compiler.source=1.8
Sab shop/Sab_java/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.jdt.launching.prefseclipse.preferences.version=1
org.eclipse.jdt.launching.PREF_VM_XML=\r\n\r\n\r\n\r\n\r\n\r\n
Sab shop/Sab_java/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.jdt.ui.prefscontent_assist_disabled_computers=org.eclipse.jdt.ui.textProposalCategory\u0000org.eclipse.recommenders.calls.rcp.proposalCategory.templates\u0000org.eclipse.mylyn.java.ui.javaAllProposalCategory\u0000org.eclipse.jdt.ui.javaAllProposalCategory\u0000org.eclipse.jdt.ui.javaTypeProposalCategory\u0000org.eclipse.jdt.ui.javaNoTypeProposalCategory\u0000org.eclipse.recommenders.chain.rcp.proposalCategory.chain\u0000
content_assist_lru_history=
content_assist_number_of_computers=24
content_assist_proposals_background=255,255,255
content_assist_proposals_foreground=0,0,0
eclipse.preferences.version=1
org.eclipse.jdt.internal.ui.navigator.layout=2
org.eclipse.jdt.internal.ui.navigator.librariesnode=true
org.eclipse.jdt.ui.formatterprofiles.version=13
org.eclipse.jdt.ui.text.code_templates_migrated=true
org.eclipse.jdt.ui.text.custom_code_templates=
org.eclipse.jdt.ui.text.custom_templates=
org.eclipse.jdt.ui.text.templates_migrated=true
spelling_locale_initialized=true
useAnnotationsPrefPage=true
useQuickDiffPrefPage=true
Sab shop/Sab_java/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.jst.j2ee.webservice.ui.prefsareThereWebServices=false
eclipse.preferences.version=1
Sab shop/Sab_java/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.m2e.discovery.prefseclipse.preferences.version=1
org.eclipse.m2e.discovery.pref.projects=
Sab shop/Sab_java/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.mylyn.context.core.prefseclipse.preferences.version=1
mylyn.attention.migrated=true
Sab shop/Sab_java/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.mylyn.java.ui.prefseclipse.preferences.version=1
org.eclipse.mylyn.java.ui.run.count.3_10_0=1
org.eclipse.mylyn.java.ui.run.count.3_1_0=1
Sab shop/Sab_java/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.mylyn.monitor.ui.prefseclipse.preferences.version=1
org.eclipse.mylyn.monitor.activity.tracking.enabled.checked=true
Sab shop/Sab_java/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.mylyn.tasks.ui.prefseclipse.preferences.version=1
migrated.task.repositories.secure.store=true
org.eclipse.mylyn.tasks.ui.filters.nonmatching=true
org.eclipse.mylyn.tasks.ui.filters.nonmatching.encouraged=true
org.eclipse.mylyn.tasks.ui.welcome.message=true
Sab shop/Sab_java/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.pde.api.tools.prefseclipse.preferences.version=1
knownEEFragments=
Sab shop/Sab_java/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.rse.core.prefsactiveuserprofiles=DESKTOP-58GQ0OQ;Team
eclipse.preferences.version=1
org.eclipse.rse.systemtype.local.systemType.defaultUserId=$4MR4K5h\!N\!
Sab shop/Sab_java/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.rse.ui.prefseclipse.preferences.version=1
org.eclipse.rse.preferences.order.connections=DESKTOP-58GQ0OQ.Local
Sab shop/Sab_java/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.team.ui.prefseclipse.preferences.version=1
org.eclipse.team.ui.first_time=false
Sab shop/Sab_java/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.ui.editors.prefseclipse.preferences.version=1
overviewRuler_migration=migrated_3.1
Sab shop/Sab_java/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.ui.ide.prefsPROBLEMS_FILTERS_MIGRATE=true
eclipse.preferences.version=1
platformState=1501415360949
quickStart=false
tipsAndTricks=true
Sab shop/Sab_java/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.ui.workbench.prefs//org.eclipse.ui.commands/state/org.eclipse.ui.navigator.resources.nested.changeProjectPresentation/org.eclipse.ui.commands.radioState=false
//org.eclipse.ui.commands/state/org.eclipse.wst.xml.views.XPathView.processor.xpathprocessor/org.eclipse.ui.commands.radioState=xpath10
PLUGINS_NOT_ACTIVATED_ON_STARTUP=;org.eclipse.m2e.discovery;
eclipse.preferences.version=1
Sab shop/Sab_java/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.wst.jsdt.ui.prefseclipse.preferences.version=1
fontPropagated=true
org.eclipse.jface.textfont=1|Consolas|10.0|0|WINDOWS|1|0|0|0|0|0|0|0|0|1|0|0|0|0|Consolas;
org.eclipse.wst.jsdt.ui.editor.tab.width=
org.eclipse.wst.jsdt.ui.formatterprofiles.version=11
org.eclipse.wst.jsdt.ui.javadoclocations.migrated=true
proposalOrderMigrated=true
tabWidthPropagated=true
useAnnotationsPrefPage=true
useQuickDiffPrefPage=true
Sab shop/Sab_java/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.wst.ws.service.policy.prefseclipse.preferences.version=1
org.eclipse.wst.ws.service.policy.ui.servicepols.wsiprofilecomp.wsiap.defaultProtocol=http\://schemas.xmlsoap.org/wsdl/soap/
org.eclipse.wst.ws.service.policy.ui.servicepols.wsiprofilecomp.wsissbp.defaultProtocol=http\://schemas.xmlsoap.org/wsdl/soap/
Sab shop/Sab_java/.metadata/.plugins/org.eclipse.debug.core/.launches/Sab.launch






Sab shop/Sab_java/.metadata/.plugins/org.eclipse.debug.ui/launchConfigurationHistory.xml












Sab shop/Sab_java/.metadata/.plugins/org.eclipse.e4.workbench/workbench.xmi

activeSchemeId:org.eclipse.ui.defaultAcceleratorConfiguration
ModelMigrationProcessor.001







topLevel
shellMaximized




persp.actionSet:org.eclipse.mylyn.doc.actionSet
persp.actionSet:org.eclipse.mylyn.tasks.ui.navigation
persp.actionSet:org.eclipse.ui.cheatsheets.actionSet
persp.actionSet:org.eclipse.rse.core.search.searchActionSet
persp.actionSet:org.eclipse.search.searchActionSet
persp.actionSet:org.eclipse.ui.edit.text.actionSet.annotationNavigation
persp.actionSet:org.eclipse.ui.edit.text.actionSet.navigation
persp.actionSet:org.eclipse.ui.edit.text.actionSet.convertLineDelimitersTo
persp.actionSet:org.eclipse.ui.externaltools.ExternalToolsSet
persp.actionSet:org.eclipse.ui.actionSet.keyBindings
persp.actionSet:org.eclipse.ui.actionSet.openFiles
persp.actionSet:org.eclipse.wst.jsdt.chromium.debug.ui.actionSets
persp.actionSet:org.eclipse.jst.j2ee.J2eeMainActionSet
persp.actionSet:org.eclipse.jdt.ui.JavaActionSet
persp.actionSet:org.eclipse.debug.ui.launchActionSet
persp.actionSet:org.eclipse.debug.ui.debugActionSet
persp.actionSet:org.eclipse.ui.NavigateActionSet
persp.viewSC:org.eclipse.ui.navigator.ProjectExplorer
persp.viewSC:org.eclipse.wst.server.ui.ServersView
persp.viewSC:org.eclipse.datatools.connectivity.DataSourceExplorerNavigator
persp.viewSC:org.eclipse.ui.views.BookmarkView
persp.viewSC:org.eclipse.ui.views.ContentOutline
persp.viewSC:org.eclipse.ui.views.PropertySheet
persp.viewSC:org.eclipse.ui.views.ResourceNavigator
persp.viewSC:org.eclipse.wst.common.snippets.internal.ui.SnippetsView
persp.viewSC:org.eclipse.ui.views.AllMarkersView
persp.viewSC:org.eclipse.mylyn.tasks.ui.views.tasks
persp.viewSC:org.eclipse.search.ui.views.SearchView
persp.viewSC:org.eclipse.ui.console.ConsoleView
persp.showIn:org.eclipse.ui.navigator.ProjectExplorer
persp.actionSet:org.eclipse.wst.ws.explorer.explorer
persp.newWizSC:org.eclipse.m2e.core.wizards.Maven2ProjectWizard
persp.showIn:org.eclipse.tm.terminal.view.ui.TerminalsView
persp.perspSC:org.eclipse.debug.ui.DebugPerspective
persp.perspSC:org.eclipse.jdt.ui.JavaPerspective
persp.perspSC:org.eclipse.ui.resourcePerspective
persp.perspSC:org.eclipse.wst.web.ui.webDevPerspective
persp.newWizSC:org.eclipse.jst.j2ee.ui.project.facet.EarProjectWizard
persp.newWizSC:org.eclipse.jst.servlet.ui.project.facet.WebProjectWizard
persp.newWizSC:org.eclipse.jst.ejb.ui.project.facet.EjbProjectWizard
persp.newWizSC:org.eclipse.jst.j2ee.jca.ui.internal.wizard.ConnectorProjectWizard
persp.newWizSC:org.eclipse.jst.j2ee.ui.project.facet.appclient.AppClientProjectWizard
persp.newWizSC:org.eclipse.wst.web.ui.internal.wizards.SimpleWebProjectWizard
persp.newWizSC:org.eclipse.jpt.ui.wizard.newJpaProject
persp.newWizSC:org.eclipse.jst.servlet.ui.internal.wizard.AddServletWizard
persp.newWizSC:org.eclipse.jst.ejb.ui.internal.wizard.AddSessionBeanWizard
persp.newWizSC:org.eclipse.jst.ejb.ui.internal.wizard.AddMessageDrivenBeanWizard
persp.newWizSC:org.eclipse.jpt.ui.wizard.newEntity
persp.newWizSC:org.eclipse.jst.ws.creation.ui.wizard.serverwizard
persp.newWizSC:org.eclipse.ui.wizards.new.folder
persp.newWizSC:org.eclipse.ui.wizards.new.file
persp.actionSet:org.eclipse.wst.server.ui.internal.webbrowser.actionSet
persp.actionSet:org.eclipse.debug.ui.breakpointActionSet
persp.actionSet:org.eclipse.eclemma.ui.CoverageActionSet
persp.showIn:org.eclipse.eclemma.ui.CoverageView
persp.newWizSC:org.eclipse.jpt.jpa.ui.wizard.newJpaProject
persp.perspSC:org.eclipse.jpt.ui.jpaPerspective

































persp.actionSet:org.eclipse.mylyn.doc.actionSet
persp.actionSet:org.eclipse.mylyn.tasks.ui.navigation
persp.actionSet:org.eclipse.ui.cheatsheets.actionSet
persp.actionSet:org.eclipse.rse.core.search.searchActionSet
persp.actionSet:org.eclipse.search.searchActionSet
persp.actionSet:org.eclipse.ui.edit.text.actionSet.annotationNavigation
persp.actionSet:org.eclipse.ui.edit.text.actionSet.navigation
persp.actionSet:org.eclipse.ui.edit.text.actionSet.convertLineDelimitersTo
persp.actionSet:org.eclipse.ui.externaltools.ExternalToolsSet
persp.actionSet:org.eclipse.ui.actionSet.keyBindings
persp.actionSet:org.eclipse.ui.actionSet.openFiles
persp.actionSet:org.eclipse.wst.jsdt.chromium.debug.ui.actionSets
persp.actionSet:org.eclipse.debug.ui.launchActionSet
persp.actionSet:org.eclipse.jdt.ui.JavaActionSet
persp.actionSet:org.eclipse.jdt.ui.JavaElementCreationActionSet
persp.actionSet:org.eclipse.ui.NavigateActionSet
persp.viewSC:org.eclipse.jdt.ui.PackageExplorer
persp.viewSC:org.eclipse.jdt.ui.TypeHierarchy
persp.viewSC:org.eclipse.jdt.ui.SourceView
persp.viewSC:org.eclipse.jdt.ui.JavadocView
persp.viewSC:org.eclipse.search.ui.views.SearchView
persp.viewSC:org.eclipse.ui.console.ConsoleView
persp.viewSC:org.eclipse.ui.views.ContentOutline
persp.viewSC:org.eclipse.ui.views.ProblemView
persp.viewSC:org.eclipse.ui.views.ResourceNavigator
persp.viewSC:org.eclipse.ui.views.TaskList
persp.viewSC:org.eclipse.ui.views.ProgressView
persp.viewSC:org.eclipse.ui.navigator.ProjectExplorer
persp.viewSC:org.eclipse.ui.texteditor.TemplatesView
persp.viewSC:org.eclipse.pde.runtime.LogView
persp.newWizSC:org.eclipse.jdt.ui.wizards.JavaProjectWizard
persp.newWizSC:org.eclipse.jdt.ui.wizards.NewPackageCreationWizard
persp.newWizSC:org.eclipse.jdt.ui.wizards.NewClassCreationWizard
persp.newWizSC:org.eclipse.jdt.ui.wizards.NewInterfaceCreationWizard
persp.newWizSC:org.eclipse.jdt.ui.wizards.NewEnumCreationWizard
persp.newWizSC:org.eclipse.jdt.ui.wizards.NewAnnotationCreationWizard
persp.newWizSC:org.eclipse.jdt.ui.wizards.NewSourceFolderCreationWizard
persp.newWizSC:org.eclipse.jdt.ui.wizards.NewSnippetFileCreationWizard
persp.newWizSC:org.eclipse.jdt.ui.wizards.NewJavaWorkingSetWizard
persp.newWizSC:org.eclipse.ui.wizards.new.folder
persp.newWizSC:org.eclipse.ui.wizards.new.file
persp.newWizSC:org.eclipse.ui.editors.wizards.UntitledTextFileWizard
persp.perspSC:org.eclipse.jdt.ui.JavaBrowsingPerspective
persp.perspSC:org.eclipse.debug.ui.DebugPerspective
persp.viewSC:org.eclipse.mylyn.tasks.ui.views.tasks
persp.newWizSC:org.eclipse.mylyn.tasks.ui.wizards.new.repository.task
persp.showIn:org.eclipse.jdt.ui.PackageExplorer
persp.showIn:org.eclipse.team.ui.GenericHistoryView
persp.showIn:org.eclipse.ui.views.ResourceNavigator
persp.showIn:org.eclipse.ui.navigator.ProjectExplorer
persp.perspSC:org.eclipse.wst.jsdt.ui.JavaPerspective
persp.viewSC:net.sourceforge.metrics.ui.MetricsView
persp.viewSC:net.sourceforge.metrics.ui.layeredpackagegraph.LayeredPackageTableView
persp.actionSet:org.eclipse.debug.ui.breakpointActionSet
persp.actionSet:org.eclipse.jdt.debug.ui.JDTDebugActionSet
persp.showIn:org.eclipse.egit.ui.RepositoriesView
persp.viewSC:org.eclipse.tm.terminal.view.ui.TerminalsView
persp.showIn:org.eclipse.tm.terminal.view.ui.TerminalsView
persp.newWizSC:org.eclipse.jdt.junit.wizards.NewTestCaseCreationWizard
persp.actionSet:org.eclipse.jdt.junit.JUnitActionSet
persp.actionSet:org.eclipse.eclemma.ui.CoverageActionSet
persp.showIn:org.eclipse.eclemma.ui.CoverageView
persp.viewSC:org.eclipse.ant.ui.views.AntView



org.eclipse.e4.primaryNavigationStack


















org.eclipse.e4.secondaryNavigationStack







org.eclipse.e4.secondaryDataStack






















View
categoryTag:Help




View
categoryTag:General

ViewMenu
menuContribution:menu






View
categoryTag:Help



org.eclipse.e4.primaryDataStack
EditorStack
active


Editor
org.eclipse.jdt.ui.CompilationUnitEditor
removeOnHide
active
activeOnClose







View
categoryTag:General

ViewMenu
menuContribution:menu






View
categoryTag:General




View
categoryTag:Java




View
categoryTag:Java Browsing




View
categoryTag:General

ViewMenu
menuContribution:menu






View
categoryTag:General




View
categoryTag:Server




View
categoryTag:Data Management




View
categoryTag:General





View
categoryTag:General

ViewMenu
menuContribution:menu






View
categoryTag:General





View
categoryTag:General

ViewMenu
menuContribution:menu






View
categoryTag:General




View
categoryTag:General




View
categoryTag:General





View
categoryTag:General

ViewMenu
menuContribution:menu







View
categoryTag:Mylyn

ViewMenu
menuContribution:menu







View
categoryTag:Java

ViewMenu
menuContribution:menu






View
categoryTag:Java




View
categoryTag:Java




View
categoryTag:General




View
categoryTag:Git




View
categoryTag:Terminal




View
categoryTag:Java




View
categoryTag:Ant



toolbarSeparator



Draggable



toolbarSeparator



Draggable


Draggable


Draggable


Draggable


Draggable


Draggable


Draggable


toolbarSeparator



Draggable



toolbarSeparator



toolbarSeparator



Draggable


stretch
SHOW_RESTORE_MENU


Draggable
HIDEABLE
SHOW_RESTORE_MENU




stretch


Draggable


Draggable




TrimStack
Draggable
















platform:win32








































































































































































































































































































































































































































































































platform:win32

































































































































































































Editor




View
categoryTag:Ant




View
categoryTag:Gradle




View
categoryTag:Gradle




View
categoryTag:Data Management




View
categoryTag:Data Management




View
categoryTag:Data Management




View
categoryTag:Debug




View
categoryTag:Debug




View
categoryTag:Debug




View
categoryTag:Debug




View
categoryTag:Debug




View
categoryTag:Debug




View
categoryTag:Debug




View
categoryTag:Java




View
categoryTag:Git




View
categoryTag:Git




View
categoryTag:Git




View
categoryTag:Git




View
categoryTag:Git




View
categoryTag:General




View
categoryTag:Help




View
categoryTag:Debug




View
categoryTag:Java




View
categoryTag:Java




View
categoryTag:Java




View
categoryTag:Java Browsing




View
categoryTag:Java Browsing




View
categoryTag:Java Browsing




View
categoryTag:Java Browsing




View
categoryTag:Java




View
categoryTag:General




View
categoryTag:Java




View
categoryTag:Java




View
categoryTag:JPA




View
categoryTag:JPA




View
categoryTag:JavaServer Faces




View
categoryTag:JavaServer Faces




View
categoryTag:Web Services




View
categoryTag:Maven




View
categoryTag:Maven




View
categoryTag:Mylyn




View
categoryTag:Mylyn




View
categoryTag:Mylyn




View
categoryTag:Oomph




View
categoryTag:API Tools




View
categoryTag:Plug-in Development




View
categoryTag:Plug-in Development




View
categoryTag:Plug-in Development




View
categoryTag:Plug-in Development




View
categoryTag:Plug-in Development




View
categoryTag:Code Recommenders




View
categoryTag:Code Recommenders




View
categoryTag:Code Recommenders




View
categoryTag:Code Recommenders




View
categoryTag:Remote Systems




View
categoryTag:Remote Systems




View
categoryTag:Remote Systems




View
categoryTag:Remote Systems




View
categoryTag:Remote Systems




View
categoryTag:Remote Systems




View
categoryTag:Remote Systems




View
categoryTag:General




View
categoryTag:General




View
categoryTag:Team




View
categoryTag:Team




View
categoryTag:Terminal




View
categoryTag:Other




View
categoryTag:General




View
categoryTag:General




View
categoryTag:Help




View
categoryTag:General




View
categoryTag:General




View
categoryTag:General




View
categoryTag:General




View
categoryTag:General




View
categoryTag:General




View
categoryTag:General




View
categoryTag:General




View
categoryTag:General




View
categoryTag:General




View
categoryTag:General




View
categoryTag:General




View
categoryTag:Debug




View
categoryTag:JavaScript




View
categoryTag:JavaScript




View
categoryTag:JavaScript




View
categoryTag:JavaScript




View
categoryTag:JavaScript




View
categoryTag:Server




View
categoryTag:XML




View
categoryTag:XML




View
categoryTag:XML




View
categoryTag:XML




View
categoryTag:XML




View
categoryTag:Metrics




View
categoryTag:Metrics




View
categoryTag:Metrics




View
categoryTag:Metrics






glue
move_after:PerspectiveSpacer
SHOW_RESTORE_MENU


move_after:Spacer Glue
HIDEABLE
SHOW_RESTORE_MENU


glue
move_after:SearchField
SHOW_RESTORE_MENU















































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































Sab shop/Sab_java/.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/org.eclipse.epp.logging.aeri.ide.server/http-cache.lucene60/segments_1
Sab shop/Sab_java/.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/org.eclipse.epp.logging.aeri.ide.server/http-cache.lucene60/write.lock
Sab shop/Sab_java/.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/org.eclipse.epp.logging.aeri.ide.server/local-history.lucene60/segments_1
Sab shop/Sab_java/.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/org.eclipse.epp.logging.aeri.ide.server/local-history.lucene60/write.lock
Sab shop/Sab_java/.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/org.eclipse.epp.logging.aeri.ide.server/local-history.lucene60/_0.cfe
Sab shop/Sab_java/.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/org.eclipse.epp.logging.aeri.ide.server/local-history.lucene60/_0.cfs
Sab shop/Sab_java/.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/org.eclipse.epp.logging.aeri.ide.server/local-history.lucene60/_0.si
Sab shop/Sab_java/.metadata/.plugins/org.eclipse.epp.logging.aeri.ide/org.eclipse.epp.logging.aeri.ide.server/server-config.json{
"version": "v1",
"title": "Eclipse",
"timestamp": 1559719199724,
"ttl": 10080,
"helpUrl": "https://dev.eclipse.org/recommenders/community/aeri/v2/help/",
"feedbackUrl": "https://www.codetrails.com/error-analytics/",
"aboutUrl": "https://wiki.eclipse.org/EPP/Logging",
"submitUrl": "https://dev.eclipse.org/recommenders/community/confess/0.6/reports/",
"maxReportSize": 262144,
"problemsUrl": "https://www.eclipse.org/downloads/download.php?r\u003d1\u0026file\u003d/technology/epp/logging/problems.zip",
"problemsTtl": 20160,
"interestUrl": "https://dev.eclipse.org/recommenders/community/confess/v2/interest",
"connectTimeout": 10,
"socketTimeout": 10,
"acceptedProducts": [
"org.eclipse.*",
"org.fordiac.*"
],
"acceptedPlugins": [
"org.apache.log4j.*",
"org.eclipse.*",
"org.fordiac.*"
],
"acceptedPackages": [
"adaptorinterface.impl.*",
"ch.qos.*",
"com.cforcoding.*",
"com.google.*",
"com.gradleware.tooling.*",
"com.mountainminds.eclemma.*",
"com.naef.*",
"com.sun.*",
"java.*",
"javafx.*",
"javax.*",
"org.apache.*",
"org.eclipse.*",
"org.fordiac.*",
"org.gradle.*",
"org.jacoco.*",
"org.osgi.*",
"org.slf4j.*",
"sun.*"
],
"requiredPackages": [
"adaptorinterface.impl.*",
"com.cforcoding.*",
"com.gradleware.tooling.*",
"com.mountainminds.eclemma.*",
"com.naef.*",
"org.eclipse.*",
"org.fordiac.*",
"org.gradle.*",
"org.jacoco.*"
],
"acceptOtherPackages": false,
"acceptUiFreezes": true,
"ignoredStatuses": [
":java.io.IOException:There is not enough space on the disk",
":java.net.*:",
"org.eclipse.core.filesystem::Could not delete*",
"org.eclipse.core.filesystem::Could not move*",
"org.eclipse.core.resources:org.eclipse.core.internal.resources.ResourceException:Resource is out of sync with the file system*",
"org.eclipse.core.runtime::Invalid input url*",
"org.eclipse.epp.mpc.ui:java.io.IOException:",
"org.eclipse.equinox.p2.*::",
"org.eclipse.jface:java.io.IOException:Unable to resolve plug-in*",
"org.eclipse.oomph.setup.core:$org.apache.http.ConnectionClosedException:",
"org.eclipse.pde.core::The current target platform contains errors*",
"org.eclipse.ui::Conflicting handlers for*"
],
"problemsZipLastDownloadTimestamp": 0
}
Sab shop/Sab_java/.metadata/.plugins/org.eclipse.jdt.core/1056031855.index
Sab shop/Sab_java/.metadata/.plugins/org.eclipse.jdt.core/134360950.index
Sab shop/Sab_java/.metadata/.plugins/org.eclipse.jdt.core/1654674800.index
Sab shop/Sab_java/.metadata/.plugins/org.eclipse.jdt.core/1686655237.index
Sab shop/Sab_java/.metadata/.plugins/org.eclipse.jdt.core/189530877.index
Sab shop/Sab_java/.metadata/.plugins/org.eclipse.jdt.core/1924480154.index
Sab shop/Sab_java/.metadata/.plugins/org.eclipse.jdt.core/197789008.index
Sab shop/Sab_java/.metadata/.plugins/org.eclipse.jdt.core/2075892729.index
Sab shop/Sab_java/.metadata/.plugins/org.eclipse.jdt.core/2725125150.index
Sab shop/Sab_java/.metadata/.plugins/org.eclipse.jdt.core/2816613229.index
Sab shop/Sab_java/.metadata/.plugins/org.eclipse.jdt.core/3145607036.index
Sab shop/Sab_java/.metadata/.plugins/org.eclipse.jdt.core/3449055620.index
Sab shop/Sab_java/.metadata/.plugins/org.eclipse.jdt.core/3608585563.index
Sab shop/Sab_java/.metadata/.plugins/org.eclipse.jdt.core/3627084181.index
Sab shop/Sab_java/.metadata/.plugins/org.eclipse.jdt.core/3982276604.index
Sab shop/Sab_java/.metadata/.plugins/org.eclipse.jdt.core/4005617011.index
Sab shop/Sab_java/.metadata/.plugins/org.eclipse.jdt.core/4062329064.index
Sab shop/Sab_java/.metadata/.plugins/org.eclipse.jdt.core/4132859981.index
Sab shop/Sab_java/.metadata/.plugins/org.eclipse.jdt.core/543409727.index
Sab shop/Sab_java/.metadata/.plugins/org.eclipse.jdt.core/assumedExternalFilesCache
Sab shop/Sab_java/.metadata/.plugins/org.eclipse.jdt.core/externalFilesCache
Sab shop/Sab_java/.metadata/.plugins/org.eclipse.jdt.core/externalLibsTimeStamps
Sab shop/Sab_java/.metadata/.plugins/org.eclipse.jdt.core/index.db
Sab shop/Sab_java/.metadata/.plugins/org.eclipse.jdt.core/javaLikeNames.txtjava
Sab shop/Sab_java/.metadata/.plugins/org.eclipse.jdt.core/nonChainingJarsCache
Sab shop/Sab_java/.metadata/.plugins/org.eclipse.jdt.core/savedIndexNames.txtINDEX VERSION 1.130+D:\tutoring\Sab shop\Sab_java\.metadata\.plugins\org.eclipse.jdt.core
3627084181.index
4005617011.index
2725125150.index
189530877.index
3608585563.index
4062329064.index
3982276604.index
543409727.index
2075892729.index
3145607036.index
197789008.index
3449055620.index
134360950.index
4132859981.index
1056031855.index
1924480154.index
2816613229.index
1654674800.index
1686655237.index
Sab shop/Sab_java/.metadata/.plugins/org.eclipse.jdt.core/variablesAndContainers.dat
Sab shop/Sab_java/.metadata/.plugins/org.eclipse.jdt.launching/.install.xml

Sab shop/Sab_java/.metadata/.plugins/org.eclipse.jdt.launching/libraryInfos.xml















Sab shop/Sab_java/.metadata/.plugins/org.eclipse.jdt.ui/dialog_settings.xml
    
        
        
        
        
        
    
    
        
        
    
    
        
    
    
    
    
    
    
    
Sab shop/Sab_java/.metadata/.plugins/org.eclipse.jdt.ui/OpenTypeHistory.xml
Sab shop/Sab_java/.metadata/.plugins/org.eclipse.jdt.ui/QualifiedTypeNameHistory.xml


Sab shop/Sab_java/.metadata/.plugins/org.eclipse.m2e.logback.configuration/0.log2019-06-05 12:49:49,072 [Worker-0] INFO c.g.t.t.d.PublishedGradleVersions - Gradle version information cache is out-of-date. Trying to update.
Sab shop/Sab_java/.metadata/.plugins/org.eclipse.m2e.logback.configuration/logback.1.8.0.20170516-2043.xml


%date [%thread] %-5level %logger{35} - %msg%n


OFF



${org.eclipse.m2e.log.dir}/0.log

${org.eclipse.m2e.log.dir}/%i.log
1
10


100MB


%date [%thread] %-5level %logger{35} - %msg%n




WARN










Sab shop/Sab_java/.metadata/.plugins/org.eclipse.oomph.setup/workspace.setup
Sab shop/Sab_java/.metadata/.plugins/org.eclipse.pde.core/.cache/clean-cache.properties#Cached timestamps
#Wed Jun 05 13:14:34 IST 2019
Sab shop/Sab_java/.metadata/.plugins/org.eclipse.rse.core/.log
Sab shop/Sab_java/.metadata/.plugins/org.eclipse.rse.core/initializerMarks/org.eclipse.rse.internal.core.RSELocalConnectionInitializer.mark
Sab shop/Sab_java/.metadata/.plugins/org.eclipse.rse.core/profiles/PRF.desktop-58gq0oq_32539/FP.local.files_0/node.properties# RSE DOM Node
00-name=DESKTOP-58GQ0OQ\:local.files
01-type=FilterPool
03-attr.default=true
03-attr.deletable=true
03-attr.id=local.files
03-attr.nonRenamable=false
03-attr.owningParentName=null
03-attr.release=200
03-attr.singleFilterStringOnly=false
03-attr.singleFilterStringOnlyESet=false
03-attr.stringsCaseSensitive=true
03-attr.supportsDuplicateFilterStrings=false
03-attr.supportsNestedFilters=true
03-attr.type=default
06-child.00000.00-name=My Home
06-child.00000.01-type=Filter
06-child.00000.03-attr.default=false
06-child.00000.03-attr.filterType=default
06-child.00000.03-attr.id=My Home
06-child.00000.03-attr.nonChangable=false
06-child.00000.03-attr.nonDeletable=false
06-child.00000.03-attr.nonRenamable=false
06-child.00000.03-attr.promptable=false
06-child.00000.03-attr.relativeOrder=0
06-child.00000.03-attr.release=200
06-child.00000.03-attr.singleFilterStringOnly=false
06-child.00000.03-attr.stringsCaseSensitive=false
06-child.00000.03-attr.stringsNonChangable=false
06-child.00000.03-attr.supportsDuplicateFilterStrings=false
06-child.00000.03-attr.supportsNestedFilters=true
06-child.00000.06-child.00000.00-name=C\:\\Users\\DELL\\*
06-child.00000.06-child.00000.01-type=FilterString
06-child.00000.06-child.00000.03-attr.default=false
06-child.00000.06-child.00000.03-attr.string=C\:\\Users\\DELL\\*
06-child.00000.06-child.00000.03-attr.type=default
06-child.00001.00-name=Drives
06-child.00001.01-type=Filter
06-child.00001.03-attr.default=false
06-child.00001.03-attr.filterType=default
06-child.00001.03-attr.id=Drives
06-child.00001.03-attr.nonChangable=false
06-child.00001.03-attr.nonDeletable=false
06-child.00001.03-attr.nonRenamable=false
06-child.00001.03-attr.promptable=false
06-child.00001.03-attr.relativeOrder=0
06-child.00001.03-attr.release=200
06-child.00001.03-attr.singleFilterStringOnly=false
06-child.00001.03-attr.stringsCaseSensitive=false
06-child.00001.03-attr.stringsNonChangable=false
06-child.00001.03-attr.supportsDuplicateFilterStrings=false
06-child.00001.03-attr.supportsNestedFilters=true
06-child.00001.06-child.00000.00-name=*
06-child.00001.06-child.00000.01-type=FilterString
06-child.00001.06-child.00000.03-attr.default=false
06-child.00001.06-child.00000.03-attr.string=*
06-child.00001.06-child.00000.03-attr.type=default
Sab shop/Sab_java/.metadata/.plugins/org.eclipse.rse.core/profiles/PRF.desktop-58gq0oq_32539/H.local_16/node.properties# RSE DOM Node
00-name=Local
01-type=Host
03-attr.description=
03-attr.hostname=LOCALHOST
03-attr.offline=false
03-attr.promptable=false
03-attr.systemType=org.eclipse.rse.systemtype.local
03-attr.type=Local
06-child.00000.00-name=Local Connector Service
06-child.00000.01-type=ConnectorService
06-child.00000.03-attr.group=Local Connector Service
06-child.00000.03-attr.port=0
06-child.00000.03-attr.useSSL=false
06-child.00000.06-child.00000.00-name=Local Files
06-child.00000.06-child.00000.01-type=SubSystem
06-child.00000.06-child.00000.03-attr.hidden=false
06-child.00000.06-child.00000.03-attr.type=local.files
06-child.00000.06-child.00000.06-child.00000.00-name=DESKTOP-58GQ0OQ___DESKTOP-58GQ0OQ\:local.files
06-child.00000.06-child.00000.06-child.00000.01-type=FilterPoolReference
06-child.00000.06-child.00000.06-child.00000.03-attr.refID=local.files
06-child.00000.06-child.00001.00-name=Local Shells
06-child.00000.06-child.00001.01-type=SubSystem
06-child.00000.06-child.00001.03-attr.hidden=false
06-child.00000.06-child.00001.03-attr.type=local.shells
Sab shop/Sab_java/.metadata/.plugins/org.eclipse.rse.core/profiles/PRF.desktop-58gq0oq_32539/node.properties# RSE DOM Node
00-name=DESKTOP-58GQ0OQ
01-type=Profile
03-attr.defaultPrivate=true
03-attr.isActive=true
05-ref.00000=FP.local.files_0
05-ref.00001=H.local_16
Sab shop/Sab_java/.metadata/.plugins/org.eclipse.rse.ui/.log
Sab shop/Sab_java/.metadata/.plugins/org.eclipse.tm.terminal.view.ui/.executables/data.properties#Wed Jun 05 12:49:05 IST 2019
0.Path=C\:\\Program Files\\Git\\bin\\sh.exe
0.Name=Git Bash
0.Args=--login -i
0.Translate=true
0.Icon=C\:\\Program Files\\Git\\mingw64\\share\\git\\git-for-windows.ico
Sab shop/Sab_java/.metadata/.plugins/org.eclipse.ui.ide/dialog_settings.xml
    
        
        
        
    
Sab shop/Sab_java/.metadata/.plugins/org.eclipse.ui.intro/introstate
Sab shop/Sab_java/.metadata/.plugins/org.eclipse.ui.workbench/dialog_settings.xml
    
        
        
        
        
        
        
        
        
        
        
    
    
    
Sab shop/Sab_java/.metadata/.plugins/org.eclipse.ui.workbench/workingsets.xml

Sab shop/Sab_java/.metadata/.plugins/org.eclipse.wst.jsdt.core/variablesAndContainers.dat
Sab shop/Sab_java/.metadata/.plugins/org.eclipse.wst.jsdt.ui/OpenTypeHistory.xml
Sab shop/Sab_java/.metadata/.plugins/org.eclipse.wst.jsdt.ui/QualifiedTypeNameHistory.xml
Sab shop/Sab_java/.metadata/version.ini#Wed Jun 05 12:48:46 IST 2019
org.eclipse.core.runtime=2
org.eclipse.platform=4.7.0.v20170612-0950
Sab shop/Sab_java/.recommenders/caches/identified-project-coordinates.json[[{"location":"C:\\Program Files\\Java\\jre1.8.0_144","type":"JRE","hints":{"EXECUTION_ENVIRONMENT":"JavaSE-1.8"}},"jre:jre:1.8.0"]]
Sab shop/Sab_java/.recommenders/caches/manual-mappings.json{}
Sab shop/Sab_java/.recommenders/index/http___download_eclipse_org_recommenders_models_oxygen_/segments.gen0.0
Sab shop/Sab_java/.recommenders/index/http___download_eclipse_org_recommenders_models_oxygen_/segments_10.0
Sab shop/Sab_java/.recommenders/index/http___download_eclipse_org_recommenders_models_oxygen_/_0.fdt
Sab shop/Sab_java/.recommenders/index/http___download_eclipse_org_recommenders_models_oxygen_/_0.fdx
Sab shop/Sab_java/.recommenders/index/http___download_eclipse_org_recommenders_models_oxygen_/_0.fnm
Sab shop/Sab_java/.recommenders/index/http___download_eclipse_org_recommenders_models_oxygen_/_0.frq
Sab...
SOLUTION.PDF

Answer To This Question Is Available To Download

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here