changeset 739:588ee42e01d4

Eclipse charting metadata This commit consolidates all of the less interesting metadata files that are part of the new Eclipse charting plugin. Reviewed-by: jerboaa Review-thread: http://icedtea.classpath.org/pipermail/thermostat/2012-September/003348.html
author Elliott Baron <ebaron@redhat.com>
date Thu, 25 Oct 2012 13:27:47 -0400
parents f476871fd4d1
children 2f1cedb72af5
files eclipse/com.redhat.thermostat.eclipse.chart.common/.classpath eclipse/com.redhat.thermostat.eclipse.chart.common/.project eclipse/com.redhat.thermostat.eclipse.chart.common/META-INF/MANIFEST.MF eclipse/com.redhat.thermostat.eclipse.chart.common/build.properties eclipse/com.redhat.thermostat.eclipse.chart.common/plugin.xml eclipse/com.redhat.thermostat.eclipse.chart.common/pom.xml
diffstat 6 files changed, 148 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/eclipse/com.redhat.thermostat.eclipse.chart.common/.classpath	Thu Oct 25 13:27:47 2012 -0400
@@ -0,0 +1,7 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<classpath>
+	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7"/>
+	<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
+	<classpathentry kind="src" path="src/"/>
+	<classpathentry kind="output" path="target/classes"/>
+</classpath>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/eclipse/com.redhat.thermostat.eclipse.chart.common/.project	Thu Oct 25 13:27:47 2012 -0400
@@ -0,0 +1,28 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+	<name>com.redhat.thermostat.eclipse.chart.common</name>
+	<comment></comment>
+	<projects>
+	</projects>
+	<buildSpec>
+		<buildCommand>
+			<name>org.eclipse.jdt.core.javabuilder</name>
+			<arguments>
+			</arguments>
+		</buildCommand>
+		<buildCommand>
+			<name>org.eclipse.pde.ManifestBuilder</name>
+			<arguments>
+			</arguments>
+		</buildCommand>
+		<buildCommand>
+			<name>org.eclipse.pde.SchemaBuilder</name>
+			<arguments>
+			</arguments>
+		</buildCommand>
+	</buildSpec>
+	<natures>
+		<nature>org.eclipse.pde.PluginNature</nature>
+		<nature>org.eclipse.jdt.core.javanature</nature>
+	</natures>
+</projectDescription>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/eclipse/com.redhat.thermostat.eclipse.chart.common/META-INF/MANIFEST.MF	Thu Oct 25 13:27:47 2012 -0400
@@ -0,0 +1,38 @@
+Manifest-Version: 1.0
+Bundle-ManifestVersion: 2
+Bundle-Name: Thermostat Eclipse Charting
+Bundle-SymbolicName: com.redhat.thermostat.eclipse.chart.common;singleton:=true
+Bundle-Version: 0.5.0.qualifier
+Bundle-Activator: com.redhat.thermostat.eclipse.chart.common.Activator
+Bundle-Vendor: Red Hat Inc.
+Bundle-RequiredExecutionEnvironment: JavaSE-1.7
+Import-Package: com.redhat.thermostat.client.core.views,
+ com.redhat.thermostat.client.locale,
+ com.redhat.thermostat.client.osgi.service,
+ com.redhat.thermostat.client.ui,
+ com.redhat.thermostat.common,
+ com.redhat.thermostat.common.appctx,
+ com.redhat.thermostat.common.dao,
+ com.redhat.thermostat.common.heap,
+ com.redhat.thermostat.common.locale,
+ com.redhat.thermostat.common.model,
+ com.redhat.thermostat.common.storage,
+ com.redhat.thermostat.common.utils,
+ com.redhat.thermostat.eclipse,
+ com.redhat.thermostat.eclipse.model,
+ com.redhat.thermostat.eclipse.views,
+ org.jfree.chart,
+ org.jfree.chart.axis,
+ org.jfree.chart.event,
+ org.jfree.chart.plot,
+ org.jfree.chart.renderer.xy,
+ org.jfree.data,
+ org.jfree.data.general,
+ org.jfree.data.time,
+ org.jfree.data.xy,
+ org.jfree.util,
+ org.osgi.framework;version="1.3.0"
+Bundle-ActivationPolicy: lazy
+Require-Bundle: org.eclipse.ui,
+ org.eclipse.core.runtime;bundle-version="3.8.0"
+Export-Package: com.redhat.thermostat.eclipse.chart.common
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/eclipse/com.redhat.thermostat.eclipse.chart.common/build.properties	Thu Oct 25 13:27:47 2012 -0400
@@ -0,0 +1,5 @@
+source.. = src/
+output.. = bin/
+bin.includes = META-INF/,\
+               .,\
+               plugin.xml
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/eclipse/com.redhat.thermostat.eclipse.chart.common/plugin.xml	Thu Oct 25 13:27:47 2012 -0400
@@ -0,0 +1,39 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<?eclipse version="3.4"?>
+<plugin>
+   <extension
+         point="org.eclipse.ui.views">
+      <view
+            allowMultiple="false"
+            category="com.redhat.thermostat.eclipse.main"
+            class="com.redhat.thermostat.eclipse.chart.common.HostCpuViewPart"
+            id="com.redhat.thermostat.eclipse.chart.hostCpuView"
+            name="Host CPU"
+            restorable="true">
+      </view>
+      <view
+            allowMultiple="false"
+            category="com.redhat.thermostat.eclipse.main"
+            class="com.redhat.thermostat.eclipse.chart.common.HostMemoryViewPart"
+            id="com.redhat.thermostat.eclipse.chart.hostMemoryView"
+            name="Host Memory"
+            restorable="true">
+      </view>
+      <view
+            category="com.redhat.thermostat.eclipse.main"
+            class="com.redhat.thermostat.eclipse.chart.common.VmCpuViewPart"
+            id="com.redhat.thermostat.eclipse.chart.vmCpuView"
+            name="VM CPU"
+            restorable="true">
+      </view>
+      <view
+            allowMultiple="false"
+            category="com.redhat.thermostat.eclipse.main"
+            class="com.redhat.thermostat.eclipse.chart.common.VmGcViewPart"
+            id="com.redhat.thermostat.eclipse.chart.vmGcView"
+            name="VM GC"
+            restorable="true">
+      </view>
+   </extension>
+
+</plugin>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/eclipse/com.redhat.thermostat.eclipse.chart.common/pom.xml	Thu Oct 25 13:27:47 2012 -0400
@@ -0,0 +1,31 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
+    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+  <modelVersion>4.0.0</modelVersion>
+  <parent>
+    <artifactId>thermostat-eclipse-parent</artifactId>
+    <groupId>com.redhat.thermostat.eclipse.parent</groupId>
+    <version>0.5.0-SNAPSHOT</version>
+  </parent>
+  <groupId>com.redhat.thermostat.eclipse.parent</groupId>
+  <artifactId>com.redhat.thermostat.eclipse.chart.common</artifactId>
+  <packaging>eclipse-plugin</packaging>
+  <version>0.5.0-SNAPSHOT</version>
+
+  <name>Thermostat Eclipse Charting</name>
+
+  <dependencies>
+    <dependency>
+      <groupId>com.redhat.thermostat.eclipse.parent</groupId>
+      <artifactId>com.redhat.thermostat.eclipse</artifactId>
+      <version>0.5.0-SNAPSHOT</version>
+    </dependency>
+    <dependency>
+      <groupId>com.redhat.thermostat.eclipse.parent</groupId>
+      <artifactId>com.redhat.thermostat.eclipse.jfreechart-repo</artifactId>
+      <version>0.5.0-SNAPSHOT</version>
+      <type>pom</type>
+    </dependency>
+  </dependencies>
+
+</project>