Skip to content

Commit 2bb503c

Browse files
committed
changes to add semester full of cs java test and terminate the ones that are not required
1 parent 793649e commit 2bb503c

File tree

4,748 files changed

+551194
-0
lines changed

Some content is hidden

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

4,748 files changed

+551194
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<?xml version="1.0" encoding="UTF-8"?><commitmessages/>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
2+
import java.sql.*;//step 1:import the required package
3+
public class Dbconfig {
4+
5+
6+
//step 2:define the credentials
7+
private final String uname="aloy";
8+
private final String url="jdbc:oracle:thin:@localhost:1521:em";
9+
private final String pass="1234";
10+
private final String drivername="oracle.jdbc.driver.OracleDriver";
11+
Connection con;
12+
public Connection getConnected(){
13+
14+
try {
15+
Class.forName(drivername);// throws ClassNotfoundException
16+
this.con=DriverManager.getConnection(url, uname, pass);// throws SQLException
17+
System.out.println("connected");
18+
} catch (ClassNotFoundException | SQLException e) {
19+
20+
e.printStackTrace();
21+
}
22+
23+
return con;
24+
25+
26+
}
27+
28+
29+
30+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+

Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
eclipse.preferences.version=1
2+
hg=C\:\\develop\\eclipse\\plugins\\com.intland.hgbinary.win32_2.3.2\\os\\win32\\hg.exe
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
eclipse.preferences.version=1
2+
version=1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
eclipse.preferences.version=1
2+
org.eclipse.debug.ui.PREF_LAUNCH_PERSPECTIVES=<?xml version\="1.0" encoding\="UTF-8" standalone\="no"?>\r\n<launchPerspectives/>\r\n
3+
preferredTargets=default\:default|
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
eclipse.preferences.version=1
2+
scope=
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
eclipse.preferences.version=1
2+
org.eclipse.jdt.core.codeComplete.visibilityCheck=enabled
3+
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
4+
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.7
5+
org.eclipse.jdt.core.compiler.compliance=1.7
6+
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
7+
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
8+
org.eclipse.jdt.core.compiler.source=1.7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
eclipse.preferences.version=1
2+
org.eclipse.jdt.launching.PREF_VM_XML=<?xml version\="1.0" encoding\="UTF-8" standalone\="no"?>\r\n<vmSettings defaultVM\="57,org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType13,1420115965976" defaultVMConnector\="">\r\n<vmType id\="org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType">\r\n<vm id\="1420115965976" name\="jre1.8.0_25" path\="C\:\\Program Files (x86)\\Java\\jre1.8.0_25"/>\r\n</vmType>\r\n</vmSettings>\r\n
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
content_assist_disabled_computers=org.eclipse.jdt.ui.textProposalCategory\u0000org.eclipse.jdt.ui.javaAllProposalCategory\u0000org.eclipse.jdt.ui.javaTypeProposalCategory\u0000org.eclipse.jdt.ui.javaNoTypeProposalCategory\u0000
2+
content_assist_lru_history=<?xml version\="1.0" encoding\="UTF-8" standalone\="no"?><history maxLHS\="100" maxRHS\="10"><lhs name\="gen_class"><rhs name\="gen_class"/></lhs><lhs name\="java.lang.CharSequence"><rhs name\="java.lang.StringBuffer"/></lhs><lhs name\="java.lang.AbstractStringBuilder"><rhs name\="java.lang.StringBuffer"/></lhs><lhs name\="java.lang.Appendable"><rhs name\="java.lang.StringBuffer"/></lhs><lhs name\="manager"><rhs name\="manager"/></lhs><lhs name\="staff"><rhs name\="staff"/><rhs name\="typist"/></lhs><lhs name\="typist"><rhs name\="typist"/></lhs><lhs name\="java.awt.Font"><rhs name\="java.awt.Font"/></lhs></history>
3+
content_assist_number_of_computers=15
4+
content_assist_proposals_background=255,255,255
5+
content_assist_proposals_foreground=0,0,0
6+
eclipse.preferences.version=1
7+
fontPropagated=true
8+
org.eclipse.jdt.internal.ui.navigator.layout=2
9+
org.eclipse.jdt.ui.editor.tab.width=
10+
org.eclipse.jdt.ui.formatterprofiles.version=12
11+
org.eclipse.jdt.ui.javadoclocations.migrated=true
12+
org.eclipse.jdt.ui.text.code_templates_migrated=true
13+
org.eclipse.jdt.ui.text.custom_code_templates=<?xml version\="1.0" encoding\="UTF-8" standalone\="no"?><templates/>
14+
org.eclipse.jdt.ui.text.custom_templates=<?xml version\="1.0" encoding\="UTF-8" standalone\="no"?><templates/>
15+
org.eclipse.jdt.ui.text.templates_migrated=true
16+
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;
17+
proposalOrderMigrated=true
18+
spelling_locale_initialized=true
19+
tabWidthPropagated=true
20+
useAnnotationsPrefPage=true
21+
useQuickDiffPrefPage=true
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
areThereWebServices=false
2+
eclipse.preferences.version=1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
eclipse.preferences.version=1
2+
locationorg.eclipse.jst.server.tomcat.runtime.80=C\:/apache
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
eclipse.preferences.version=1
2+
org.eclipse.m2e.discovery.pref.projects=
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
eclipse.preferences.version=1
2+
mylyn.attention.migrated=true
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
eclipse.preferences.version=1
2+
org.eclipse.mylyn.java.ui.run.count.3_10_0=1
3+
org.eclipse.mylyn.java.ui.run.count.3_1_0=1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
eclipse.preferences.version=1
2+
org.eclipse.mylyn.monitor.activity.tracking.enabled.checked=true
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
eclipse.preferences.version=1
2+
org.eclipse.mylyn.tasks.ui.filters.nonmatching=true
3+
org.eclipse.mylyn.tasks.ui.filters.nonmatching.encouraged=true
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
eclipse.preferences.version=1
2+
knownEEFragments=
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
activeuserprofiles=Aloy;Team
2+
eclipse.preferences.version=1
3+
org.eclipse.rse.systemtype.local.systemType.defaultUserId=Aloy Sen
4+
useridperkey=Aloy.Local\=Aloy Sen;
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
eclipse.preferences.version=1
2+
org.eclipse.rse.preferences.order.connections=Aloy.Local
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
eclipse.preferences.version=1
2+
pref_first_startup=false
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
eclipse.preferences.version=1
2+
org.eclipse.team.ui.first_time=false
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
browser-choice=1
2+
browsers=<?xml version\="1.0" encoding\="UTF-8"?>\r\n<web-browsers current\="0">\r\n<system/>\r\n<external location\="C\:\\Program Files (x86)\\Internet Explorer\\iexplore.exe" name\="Internet Explorer"/>\r\n</web-browsers>
3+
eclipse.preferences.version=1
4+
internalWebBrowserHistory=http\://localhost\:15000/Expenditure_Template/|*|
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
eclipse.preferences.version=1
2+
overviewRuler_migration=migrated_3.1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
PROBLEMS_FILTERS_MIGRATE=true
2+
TASKS_FILTERS_MIGRATE=true
3+
eclipse.preferences.version=1
4+
platformState=1420120335655
5+
quickStart=false
6+
tipsAndTricks=true
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
eclipse.preferences.version=1
2+
showIntro=false
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
//org.eclipse.ui.commands/state/org.eclipse.wst.xml.views.XPathView.processor.xpathprocessor/org.eclipse.ui.commands.radioState=xpath10
2+
ENABLED_DECORATORS=org.eclipse.jst.ws.jaxws.dom.integration.navigator.WebServiceDecorator\:true,org.eclipse.m2e.core.mavenVersionDecorator\:false,org.eclipse.wst.server.ui.decorator\:false,org.eclipse.datatools.connectivity.sqm.core.internal.ui.explorer.DependencyDecoration\:true,org.eclipse.datatools.connectivity.sqm.core.internal.ui.explorer.ColumnDecoration\:true,org.eclipse.datatools.connectivity.sqm.core.internal.ui.explorer.ForeignKeyDecoration\:true,org.eclipse.datatools.connectivity.sqm.core.internal.ui.explorer.IndexTriggerDecoration\:true,org.eclipse.datatools.connectivity.internal.core.ui.bookmarkDecoration\:true,org.eclipse.datatools.connectivity.internal.core.ui.FilterNodeDecoration\:true,org.eclipse.datatools.connectivity.ui.decorator.contentextension\:false,org.eclipse.datatools.enablement.ingres.ui.providers.decorators.SynonymDecorationService\:true,org.eclipse.datatools.enablement.ingres.internal.ui.providers.decorators.ParameterDecorationService\:true,org.eclipse.datatools.enablement.sybase.asa.proxytabledecorator\:true,org.eclipse.datatools.enablement.sybase.ase.webservicetabledecorator\:true,org.eclipse.datatools.enablement.sybase.systemtabledecorator\:true,org.eclipse.egit.ui.internal.decorators.GitLightweightDecorator\:true,org.eclipse.jdt.ui.override.decorator\:true,org.eclipse.jdt.ui.interface.decorator\:false,org.eclipse.jdt.ui.buildpath.decorator\:true,org.eclipse.jst.j2ee.internal.ui.util.AnnotationIconDecorator_ejb\:true,org.eclipse.jst.j2ee.navigator.internal.J2EEProjectDecorator\:true,org.eclipse.jst.jee.ui.internal.navigator.ejb.BeanDecorator\:true,org.eclipse.jst.jee.navigator.internal.JEEProjectDecorator\:true,org.eclipse.jst.j2ee.internal.ui.util.AnnotationIconDecorator_servlet\:true,org.eclipse.m2e.core.maven2decorator\:true,org.eclipse.mylyn.context.ui.decorator.interest\:true,org.eclipse.mylyn.tasks.ui.decorators.task\:true,org.eclipse.mylyn.team.ui.changeset.decorator\:true,org.eclipse.pde.ui.binaryProjectDecorator\:false,org.eclipse.rse.core.virtualobject.decorator\:true,org.eclipse.rse.core.binary.executable.decorator\:true,org.eclipse.rse.core.script.executable.decorator\:true,org.eclipse.rse.core.java.executable.decorator\:true,org.eclipse.rse.core.library.decorator\:true,org.eclipse.rse.core.link.decorator\:true,org.eclipse.rse.subsystems.error.decorator\:true,org.eclipse.team.cvs.ui.decorator\:true,org.eclipse.ui.LinkedResourceDecorator\:true,org.eclipse.ui.SymlinkDecorator\:true,org.eclipse.ui.VirtualResourceDecorator\:true,org.eclipse.ui.ContentTypeDecorator\:true,org.eclipse.ui.ResourceFilterDecorator\:false,org.eclipse.wst.jsdt.ui.override.decorator\:true,org.eclipse.wst.server.ui.navigatorDecorator\:true,
3+
PLUGINS_NOT_ACTIVATED_ON_STARTUP=org.eclipse.m2e.discovery;
4+
eclipse.preferences.version=1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
eclipse.preferences.version=1
2+
fontPropagated=true
3+
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;
4+
org.eclipse.wst.jsdt.internal.ui.navigator.layout=1
5+
org.eclipse.wst.jsdt.ui.editor.tab.width=
6+
org.eclipse.wst.jsdt.ui.formatterprofiles.version=11
7+
org.eclipse.wst.jsdt.ui.javadoclocations.migrated=true
8+
proposalOrderMigrated=true
9+
tabWidthPropagated=true
10+
useAnnotationsPrefPage=true
11+
useQuickDiffPrefPage=true
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
eclipse.preferences.version=1
2+
jspIndexState=1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
eclipse.preferences.version=1
2+
module-start-timeout=300000
3+
runtimes=<?xml version\="1.0" encoding\="UTF-8" standalone\="no"?>\r\n<runtimes>\r\n <runtime id\="Apache Tomcat v8.0" location\="C\:/apache" name\="Apache Tomcat v8.0" runtime-type-id\="org.eclipse.jst.server.tomcat.runtime.80" timestamp\="0"/>\r\n</runtimes>\r\n
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
content_assist_number_of_computers=18
2+
eclipse.preferences.version=1
3+
useAnnotationsPrefPage=true
4+
useQuickDiffPrefPage=true
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
eclipse.preferences.version=1
2+
org.eclipse.wst.ws.service.policy.ui.servicepols.wsiprofilecomp.wsiap.defaultProtocol=http\://schemas.xmlsoap.org/wsdl/soap/
3+
org.eclipse.wst.ws.service.policy.ui.servicepols.wsiprofilecomp.wsissbp.defaultProtocol=http\://schemas.xmlsoap.org/wsdl/soap/
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
allow_usage_report_preference=true
2+
ask_user_for_usage_report_preference=false
3+
eclipse.preferences.version=1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2+
<launchConfiguration type="org.eclipse.jdt.launching.localJavaApplication">
3+
<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_PATHS">
4+
<listEntry value="/synchronized@al/src/practice/example.java"/>
5+
</listAttribute>
6+
<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_TYPES">
7+
<listEntry value="1"/>
8+
</listAttribute>
9+
<stringAttribute key="org.eclipse.jdt.launching.MAIN_TYPE" value="practice.Deadlock"/>
10+
<stringAttribute key="org.eclipse.jdt.launching.PROJECT_ATTR" value="synchronized@al"/>
11+
</launchConfiguration>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2+
<launchConfiguration type="org.eclipse.jdt.launching.localJavaApplication">
3+
<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_PATHS">
4+
<listEntry value="/marque/src/Main.java"/>
5+
</listAttribute>
6+
<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_TYPES">
7+
<listEntry value="1"/>
8+
</listAttribute>
9+
<stringAttribute key="org.eclipse.jdt.launching.MAIN_TYPE" value="Main"/>
10+
<stringAttribute key="org.eclipse.jdt.launching.PROJECT_ATTR" value="marque"/>
11+
</launchConfiguration>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2+
<launchConfiguration type="org.eclipse.jdt.launching.localJavaApplication">
3+
<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_PATHS">
4+
<listEntry value="/Test_access/src/Main_connect.java"/>
5+
</listAttribute>
6+
<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_TYPES">
7+
<listEntry value="1"/>
8+
</listAttribute>
9+
<stringAttribute key="org.eclipse.jdt.launching.MAIN_TYPE" value="Main_connect"/>
10+
<stringAttribute key="org.eclipse.jdt.launching.PROJECT_ATTR" value="Test_access"/>
11+
</launchConfiguration>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2+
<launchConfiguration type="org.eclipse.m2e.Maven2LaunchConfigurationType">
3+
<booleanAttribute key="M2_DEBUG_OUTPUT" value="false"/>
4+
<stringAttribute key="M2_GOALS" value=""/>
5+
<booleanAttribute key="M2_NON_RECURSIVE" value="false"/>
6+
<booleanAttribute key="M2_OFFLINE" value="false"/>
7+
<stringAttribute key="M2_PROFILES" value=""/>
8+
<listAttribute key="M2_PROPERTIES"/>
9+
<stringAttribute key="M2_RUNTIME" value="EMBEDDED"/>
10+
<booleanAttribute key="M2_SKIP_TESTS" value="false"/>
11+
<intAttribute key="M2_THREADS" value="1"/>
12+
<booleanAttribute key="M2_UPDATE_SNAPSHOTS" value="false"/>
13+
<booleanAttribute key="M2_WORKSPACE_RESOLUTION" value="false"/>
14+
<stringAttribute key="org.eclipse.jdt.launching.JRE_CONTAINER" value="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/jre1.8.0_25"/>
15+
<stringAttribute key="org.eclipse.jdt.launching.WORKING_DIRECTORY" value=""/>
16+
</launchConfiguration>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2+
<launchConfiguration type="org.eclipse.jdt.launching.localJavaApplication">
3+
<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_PATHS"/>
4+
<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_TYPES"/>
5+
<stringAttribute key="org.eclipse.jdt.launching.MAIN_TYPE" value="oracle.jdbc.driver.OracleSql"/>
6+
<stringAttribute key="org.eclipse.jdt.launching.PROJECT_ATTR" value="jdbcdemo"/>
7+
</launchConfiguration>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2+
<launchConfiguration type="org.eclipse.jst.server.tomcat.core.launchConfigurationType">
3+
<listAttribute key="org.eclipse.jdt.launching.CLASSPATH">
4+
<listEntry value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot; standalone=&quot;no&quot;?&gt;&#13;&#10;&lt;runtimeClasspathEntry containerPath=&quot;org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/jre1.8.0_25&quot; path=&quot;2&quot; type=&quot;4&quot;/&gt;&#13;&#10;"/>
5+
<listEntry value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot; standalone=&quot;no&quot;?&gt;&#13;&#10;&lt;runtimeClasspathEntry externalArchive=&quot;C:/apache/bin/bootstrap.jar&quot; path=&quot;3&quot; type=&quot;2&quot;/&gt;&#13;&#10;"/>
6+
<listEntry value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot; standalone=&quot;no&quot;?&gt;&#13;&#10;&lt;runtimeClasspathEntry externalArchive=&quot;C:/apache/bin/tomcat-juli.jar&quot; path=&quot;3&quot; type=&quot;2&quot;/&gt;&#13;&#10;"/>
7+
</listAttribute>
8+
<booleanAttribute key="org.eclipse.jdt.launching.DEFAULT_CLASSPATH" value="false"/>
9+
<stringAttribute key="org.eclipse.jdt.launching.JRE_CONTAINER" value="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/jre1.8.0_25"/>
10+
<stringAttribute key="org.eclipse.jdt.launching.PROGRAM_ARGUMENTS" value="start"/>
11+
<stringAttribute key="org.eclipse.jdt.launching.VM_ARGUMENTS" value="-Dcatalina.base=&quot;E:\Runnable standalones\Formating_al_1@work\.metadata\.plugins\org.eclipse.wst.server.core\tmp0&quot; -Dcatalina.home=&quot;C:\apache&quot; -Dwtp.deploy=&quot;E:\Runnable standalones\Formating_al_1@work\.metadata\.plugins\org.eclipse.wst.server.core\tmp0\wtpwebapps&quot; -Djava.endorsed.dirs=&quot;C:\apache\endorsed&quot;"/>
12+
<stringAttribute key="server-id" value="Tomcat v8.0 Server at localhost"/>
13+
</launchConfiguration>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2+
<launchConfiguration type="org.eclipse.jdt.launching.localJavaApplication">
3+
<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_PATHS">
4+
<listEntry value="/type reference invalid/src/Type_gen.java"/>
5+
</listAttribute>
6+
<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_TYPES">
7+
<listEntry value="1"/>
8+
</listAttribute>
9+
<stringAttribute key="org.eclipse.jdt.launching.MAIN_TYPE" value="Type_gen"/>
10+
<stringAttribute key="org.eclipse.jdt.launching.PROJECT_ATTR" value="type reference invalid"/>
11+
</launchConfiguration>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2+
<launchConfiguration type="org.eclipse.wst.server.ui.launchConfigurationType">
3+
<stringAttribute key="client-id" value="org.eclipse.wst.server.ui.web"/>
4+
<stringAttribute key="launchable-adapter-id" value="org.eclipse.jst.server.tomcat.web"/>
5+
<stringAttribute key="module-artifact" value="org.eclipse.jst.jee.server:marque///WEB-INF/classes/Dbconfig.java"/>
6+
<stringAttribute key="module-artifact-class" value="org.eclipse.wst.server.core.util.WebResource"/>
7+
<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_PATHS">
8+
<listEntry value="/marque"/>
9+
</listAttribute>
10+
<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_TYPES">
11+
<listEntry value="4"/>
12+
</listAttribute>
13+
<stringAttribute key="server-id" value="Tomcat v8.0 Server at localhost"/>
14+
</launchConfiguration>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2+
<launchConfiguration type="org.eclipse.jdt.launching.localJavaApplication">
3+
<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_PATHS">
4+
<listEntry value="/Interthread_comm/src/Complete_reference/multithreading/interthread_comm.java"/>
5+
</listAttribute>
6+
<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_TYPES">
7+
<listEntry value="1"/>
8+
</listAttribute>
9+
<booleanAttribute key="org.eclipse.jdt.launching.ATTR_USE_START_ON_FIRST_THREAD" value="true"/>
10+
<stringAttribute key="org.eclipse.jdt.launching.MAIN_TYPE" value="Complete_reference.multithreading.interthread_comm"/>
11+
<stringAttribute key="org.eclipse.jdt.launching.PROJECT_ATTR" value="Interthread_comm"/>
12+
</launchConfiguration>
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<section name="Workbench">
3+
<section name="org.eclipse.debug.ui.SCOPED_SAVE_SELECTION_DIALOG">
4+
<item value="309" key="DIALOG_WIDTH"/>
5+
<item value="1|Segoe UI|9.0|0|WINDOWS|1|-12|0|0|0|400|0|0|0|1|0|0|0|0|Segoe UI" key="DIALOG_FONT_NAME"/>
6+
<item value="377" key="DIALOG_HEIGHT"/>
7+
</section>
8+
<section name="org.eclipse.debug.ui.LAUNCH_CONFIGURATIONS_DIALOG_SECTION">
9+
<item value="800" key="DIALOG_WIDTH"/>
10+
<item value="1|Segoe UI|9.0|0|WINDOWS|1|-12|0|0|0|400|0|0|0|1|0|0|0|0|Segoe UI" key="DIALOG_FONT_NAME"/>
11+
<item value=", org.eclipse.jdt.launching.localJavaApplication, org.eclipse.m2e.Maven2LaunchConfigurationType, " key="org.eclipse.debug.ui.EXPANDED_NODES"/>
12+
<item value="762" key="org.eclipse.debug.ui.DIALOG_SASH_WEIGHTS_2"/>
13+
<item value="640" key="DIALOG_HEIGHT"/>
14+
<item value="237" key="org.eclipse.debug.ui.DIALOG_SASH_WEIGHTS_1"/>
15+
</section>
16+
<section name="org.eclipse.debug.ui.SELECT_LAUNCH_SHORTCUT_DIALOG">
17+
<item value="270" key="DIALOG_WIDTH"/>
18+
<item value="1|Segoe UI|9.0|0|WINDOWS|1|-12|0|0|0|400|0|0|0|1|0|0|0|0|Segoe UI" key="DIALOG_FONT_NAME"/>
19+
<item value="436" key="DIALOG_HEIGHT"/>
20+
</section>
21+
</section>

0 commit comments

Comments
 (0)