Skip to content

Commit 180066c

Browse files
committed
first commit
0 parents  commit 180066c

Some content is hidden

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

71 files changed

+1493
-0
lines changed

.classpath

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<classpath>
3+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8"/>
4+
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
5+
<classpathentry kind="src" path="src"/>
6+
<classpathentry kind="output" path="bin"/>
7+
</classpath>

.project

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<projectDescription>
3+
<name>usc.edu.sampleapp</name>
4+
<comment></comment>
5+
<projects>
6+
</projects>
7+
<buildSpec>
8+
<buildCommand>
9+
<name>org.eclipse.jdt.core.javabuilder</name>
10+
<arguments>
11+
</arguments>
12+
</buildCommand>
13+
<buildCommand>
14+
<name>org.eclipse.pde.ManifestBuilder</name>
15+
<arguments>
16+
</arguments>
17+
</buildCommand>
18+
<buildCommand>
19+
<name>org.eclipse.pde.SchemaBuilder</name>
20+
<arguments>
21+
</arguments>
22+
</buildCommand>
23+
</buildSpec>
24+
<natures>
25+
<nature>org.eclipse.pde.PluginNature</nature>
26+
<nature>org.eclipse.jdt.core.javanature</nature>
27+
</natures>
28+
</projectDescription>

.settings/org.eclipse.jdt.core.prefs

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
eclipse.preferences.version=1
2+
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
3+
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8
4+
org.eclipse.jdt.core.compiler.compliance=1.8
5+
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
6+
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
7+
org.eclipse.jdt.core.compiler.source=1.8

META-INF/MANIFEST.MF

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
Manifest-Version: 1.0
2+
Bundle-ManifestVersion: 2
3+
Bundle-Name: Sampleapp
4+
Bundle-SymbolicName: usc.edu.sampleapp;singleton:=true
5+
Bundle-Version: 1.0.0.qualifier
6+
Bundle-Activator: usc.edu.sampleapp.Activator
7+
Require-Bundle: org.eclipse.ui,
8+
org.eclipse.core.runtime,
9+
org.eclipse.ui.intro,
10+
org.eclipse.help.ui,
11+
org.eclipse.help.webapp,
12+
org.eclipse.equinox.http.jetty,
13+
org.eclipse.equinox.p2.core,
14+
org.eclipse.equinox.p2.engine,
15+
org.eclipse.equinox.p2.operations,
16+
org.eclipse.equinox.p2.metadata.repository,
17+
org.eclipse.ui.forms;bundle-version="3.6.100"
18+
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
19+
Bundle-ActivationPolicy: lazy

bin/usc/edu/sampleapp/Activator.class

1.13 KB
Binary file not shown.
970 Bytes
Binary file not shown.
1.77 KB
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
3.27 KB
Binary file not shown.
2.55 KB
Binary file not shown.
277 Bytes
Binary file not shown.

bin/usc/edu/sampleapp/ImageIcon.class

1.35 KB
Binary file not shown.

bin/usc/edu/sampleapp/NewView$1.class

1004 Bytes
Binary file not shown.

bin/usc/edu/sampleapp/NewView$2.class

918 Bytes
Binary file not shown.

bin/usc/edu/sampleapp/NewView$3.class

1.05 KB
Binary file not shown.

bin/usc/edu/sampleapp/NewView.class

2.59 KB
Binary file not shown.
614 Bytes
Binary file not shown.
1.34 KB
Binary file not shown.
1.31 KB
Binary file not shown.
1.43 KB
Binary file not shown.
1023 Bytes
Binary file not shown.
4.18 KB
Binary file not shown.

bin/usc/edu/sampleapp/View$1.class

924 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.

bin/usc/edu/sampleapp/View.class

4.18 KB
Binary file not shown.

build.properties

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
output.. = bin/
2+
bin.includes = plugin.xml,\
3+
META-INF/,\
4+
.,\
5+
icons/,\
6+
splash.bmp,\
7+
content/,\
8+
introContent.xml,\
9+
toc.xml,\
10+
tocconcepts.xml,\
11+
toctasks.xml,\
12+
tocsamples.xml,\
13+
tocreference.xml,\
14+
tocgettingstarted.xml,\
15+
plugin_customization.ini
16+
source.. = src/

content/concept1.xhtml

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
2+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3+
<html xmlns="http://www.w3.org/1999/xhtml">
4+
<head>
5+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
6+
<title>Concept1.xhtml</title>
7+
<link rel="stylesheet" href="shared.css" type="text/css" />
8+
</head>
9+
10+
<body>
11+
<h1>Welcome to RCP Product</h1>
12+
<h4>Concept One</h4>
13+
<p>This is where Concept One is explained.</p>
14+
</body>
15+
</html>

content/concept2.xhtml

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
2+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3+
<html xmlns="http://www.w3.org/1999/xhtml">
4+
<head>
5+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
6+
<title>Concept2.xhtml</title>
7+
<link rel="stylesheet" href="shared.css" type="text/css" />
8+
</head>
9+
10+
<body>
11+
<h1>Welcome to RCP Product</h1>
12+
<h4>Concept Two</h4>
13+
<p>This is where Concept Two is explained.</p>
14+
</body>
15+
</html>

content/link_obj.gif

2.33 KB

content/root.css

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
img {
2+
width: 48px;
3+
height: 48px;
4+
vertical-align: middle;
5+
}
6+
7+
/* Give some space for main div.*/
8+
.page-style {
9+
text-align: center;
10+
margin-top:100px;
11+
}
12+
13+
/* satisfy Mozilla */
14+
body > div.page-style {
15+
padding-left:30%;
16+
}
17+
18+
19+
#content {
20+
text-align:left;
21+
width:23em;
22+
}
23+
24+
25+
26+
27+
28+

content/root.xhtml

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
2+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3+
<html xmlns="http://www.w3.org/1999/xhtml">
4+
<head>
5+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
6+
<title>root.xhtml</title>
7+
<link rel="stylesheet" href="shared.css" type="text/css" />
8+
<link rel="stylesheet" href="root.css" type="text/css" />
9+
</head>
10+
11+
<body>
12+
<h1>NlpUtils</h1>
13+
<div class="page-style">
14+
<div id="content">
15+
16+
<a href="http://org.eclipse.ui.intro/showPage?id=concept1" id="firstLink">
17+
<img border="0" src="link_obj.gif" alt="Concept1" />
18+
features
19+
</a>
20+
21+
<a href="http://org.eclipse.ui.intro/showPage?id=concept2">
22+
<img border="0" src="link_obj.gif" alt="Concept2" />
23+
Learn about Concept Two...</a>
24+
<anchor id="anchor1" />
25+
</div>
26+
</div>
27+
</body>
28+
</html>

content/shared.css

+45
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
/* Shared style applied to all pages */
2+
/* trick to get desired scroll bar behavior on all browsers */
3+
html {
4+
overflow:auto;
5+
border:0px;
6+
height:100%;
7+
}
8+
9+
10+
body {
11+
margin-left:14px;
12+
margin-top:10px;
13+
font-family:Tahoma;
14+
font-size: 12px;
15+
color:#000000;
16+
background-image:url("./titlebanner.gif");
17+
background-repeat: repeat-x;
18+
}
19+
20+
h1 {
21+
text-align:left;
22+
font-size: 16pt;
23+
font-weight:normal;
24+
color:#E5E5E5;
25+
}
26+
27+
h4 {
28+
color:#787878;
29+
}
30+
31+
a {
32+
display:block;
33+
font-family:Tahoma;
34+
font-size: 12px;
35+
color:#000000;
36+
font-weight:normal;
37+
text-decoration:none;
38+
padding-bottom:20px;
39+
}
40+
41+
p {
42+
padding-left:14px;
43+
}
44+
45+

content/titlebanner.gif

1.11 KB

icons/alt_window_16.gif

637 Bytes

icons/alt_window_32.gif

1.16 KB

icons/clear_co.gif

595 Bytes

icons/console_view.gif

582 Bytes

icons/splash.bmp

584 KB
Binary file not shown.

icons/welcome16.gif

254 Bytes

introContent.xml

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?xml version="1.0" encoding="utf-8" ?>
2+
<introContent>
3+
<page id="root" content="content/root.xhtml"/>
4+
<page id="concept1" content="content/concept1.xhtml"/>
5+
<page id="concept2" content="content/concept2.xhtml"/>
6+
</introContent>

nlp.product

+62
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<?pde version="3.5"?>
3+
4+
<product name="NLPUtils" id="usc.edu.sampleapp.product" application="usc.edu.sampleapp.application" version="1.0.0.qualifier" useFeatures="true" includeLaunchers="true">
5+
6+
<aboutInfo>
7+
<image path="/usc.edu.sampleapp/icons/welcome16.gif"/>
8+
</aboutInfo>
9+
10+
<configIni use="default">
11+
</configIni>
12+
13+
<launcherArgs>
14+
<vmArgsMac>-XstartOnFirstThread -Dorg.eclipse.swt.internal.carbon.smallFonts
15+
</vmArgsMac>
16+
</launcherArgs>
17+
18+
<windowImages i16="/usc.edu.sampleapp/icons/alt_window_16.gif" i32="/usc.edu.sampleapp/icons/alt_window_32.gif"/>
19+
20+
<splash
21+
location="usc.edu.sampleapp"
22+
startupProgressRect="5,275,445,15"
23+
startupMessageRect="7,252,445,20"
24+
startupForegroundColor="000000" />
25+
<launcher name="NLPUtils">
26+
<solaris/>
27+
<win useIco="false">
28+
<bmp/>
29+
</win>
30+
</launcher>
31+
32+
<intro introId="usc.edu.sampleapp.intro"/>
33+
34+
<vm>
35+
<linux include="false">org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7</linux>
36+
</vm>
37+
38+
39+
<plugins>
40+
</plugins>
41+
42+
<features>
43+
<feature id="org.eclipse.emf.ecore"/>
44+
<feature id="org.eclipse.emf.common"/>
45+
<feature id="org.eclipse.rcp"/>
46+
<feature id="org.eclipse.e4.rcp"/>
47+
<feature id="org.eclipse.help"/>
48+
<feature id="org.eclipse.equinox.p2.core.feature"/>
49+
<feature id="org.eclipse.ecf.filetransfer.httpclient4.feature"/>
50+
<feature id="org.eclipse.ecf.filetransfer.httpclient4.ssl.feature"/>
51+
<feature id="org.eclipse.ecf.core.feature"/>
52+
<feature id="org.eclipse.ecf.filetransfer.feature"/>
53+
<feature id="org.eclipse.ecf.core.ssl.feature"/>
54+
<feature id="org.eclipse.ecf.filetransfer.ssl.feature"/>
55+
<feature id="usc.edu.sampleapp.feature" version="2.0.0.qualifier"/>
56+
<feature id="org.eclipse.equinox.p2.extras.feature"/>
57+
<feature id="org.eclipse.equinox.p2.user.ui"/>
58+
<feature id="org.eclipse.equinox.p2.rcp.feature"/>
59+
</features>
60+
61+
62+
</product>

0 commit comments

Comments
 (0)