From: <pat...@us...> - 2010-08-02 20:26:32
|
Revision: 1100 http://cishell.svn.sourceforge.net/cishell/?rev=1100&view=rev Author: pataphil Date: 2010-08-02 20:26:26 +0000 (Mon, 02 Aug 2010) Log Message: ----------- * Initial commit of org.cishell.utilities.datastructure. * Contains ObjectContainer as well. Added Paths: ----------- trunk/core/org.cishell.utilities.datastructure/.classpath trunk/core/org.cishell.utilities.datastructure/.project trunk/core/org.cishell.utilities.datastructure/.settings/ trunk/core/org.cishell.utilities.datastructure/.settings/org.eclipse.jdt.core.prefs trunk/core/org.cishell.utilities.datastructure/.settings/org.eclipse.pde.core.prefs trunk/core/org.cishell.utilities.datastructure/META-INF/ trunk/core/org.cishell.utilities.datastructure/META-INF/MANIFEST.MF trunk/core/org.cishell.utilities.datastructure/build.properties trunk/core/org.cishell.utilities.datastructure/src/ trunk/core/org.cishell.utilities.datastructure/src/org/ trunk/core/org.cishell.utilities.datastructure/src/org/cishell/ trunk/core/org.cishell.utilities.datastructure/src/org/cishell/utilities/ trunk/core/org.cishell.utilities.datastructure/src/org/cishell/utilities/datastructure/ trunk/core/org.cishell.utilities.datastructure/src/org/cishell/utilities/datastructure/ObjectContainer.java Added: trunk/core/org.cishell.utilities.datastructure/.classpath =================================================================== --- trunk/core/org.cishell.utilities.datastructure/.classpath (rev 0) +++ trunk/core/org.cishell.utilities.datastructure/.classpath 2010-08-02 20:26:26 UTC (rev 1100) @@ -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/J2SE-1.5"/> + <classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/> + <classpathentry kind="src" path="src"/> + <classpathentry kind="output" path="bin"/> +</classpath> Added: trunk/core/org.cishell.utilities.datastructure/.project =================================================================== --- trunk/core/org.cishell.utilities.datastructure/.project (rev 0) +++ trunk/core/org.cishell.utilities.datastructure/.project 2010-08-02 20:26:26 UTC (rev 1100) @@ -0,0 +1,28 @@ +<?xml version="1.0" encoding="UTF-8"?> +<projectDescription> + <name>org.cishell.utilities.datastructure</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> Added: trunk/core/org.cishell.utilities.datastructure/.settings/org.eclipse.jdt.core.prefs =================================================================== --- trunk/core/org.cishell.utilities.datastructure/.settings/org.eclipse.jdt.core.prefs (rev 0) +++ trunk/core/org.cishell.utilities.datastructure/.settings/org.eclipse.jdt.core.prefs 2010-08-02 20:26:26 UTC (rev 1100) @@ -0,0 +1,7 @@ +#Mon Aug 02 13:13:19 EDT 2010 +eclipse.preferences.version=1 +org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5 +org.eclipse.jdt.core.compiler.compliance=1.5 +org.eclipse.jdt.core.compiler.problem.assertIdentifier=error +org.eclipse.jdt.core.compiler.problem.enumIdentifier=error +org.eclipse.jdt.core.compiler.source=1.5 Added: trunk/core/org.cishell.utilities.datastructure/.settings/org.eclipse.pde.core.prefs =================================================================== --- trunk/core/org.cishell.utilities.datastructure/.settings/org.eclipse.pde.core.prefs (rev 0) +++ trunk/core/org.cishell.utilities.datastructure/.settings/org.eclipse.pde.core.prefs 2010-08-02 20:26:26 UTC (rev 1100) @@ -0,0 +1,5 @@ +#Mon Aug 02 13:13:19 EDT 2010 +eclipse.preferences.version=1 +pluginProject.equinox=false +pluginProject.extensions=false +resolve.requirebundle=false Added: trunk/core/org.cishell.utilities.datastructure/META-INF/MANIFEST.MF =================================================================== --- trunk/core/org.cishell.utilities.datastructure/META-INF/MANIFEST.MF (rev 0) +++ trunk/core/org.cishell.utilities.datastructure/META-INF/MANIFEST.MF 2010-08-02 20:26:26 UTC (rev 1100) @@ -0,0 +1,7 @@ +Manifest-Version: 1.0 +Bundle-ManifestVersion: 2 +Bundle-Name: Datastructure Plug-in +Bundle-SymbolicName: org.cishell.utilities.datastructure +Bundle-Version: 1.0.0 +Bundle-RequiredExecutionEnvironment: J2SE-1.5 +Export-Package: org.cishell.utilities.datastructure Added: trunk/core/org.cishell.utilities.datastructure/build.properties =================================================================== --- trunk/core/org.cishell.utilities.datastructure/build.properties (rev 0) +++ trunk/core/org.cishell.utilities.datastructure/build.properties 2010-08-02 20:26:26 UTC (rev 1100) @@ -0,0 +1,4 @@ +source.. = src/ +output.. = bin/ +bin.includes = META-INF/,\ + . Copied: trunk/core/org.cishell.utilities.datastructure/src/org/cishell/utilities/datastructure/ObjectContainer.java (from rev 1098, trunk/core/org.cishell.utilities/src/org/cishell/utilities/ObjectContainer.java) =================================================================== --- trunk/core/org.cishell.utilities.datastructure/src/org/cishell/utilities/datastructure/ObjectContainer.java (rev 0) +++ trunk/core/org.cishell.utilities.datastructure/src/org/cishell/utilities/datastructure/ObjectContainer.java 2010-08-02 20:26:26 UTC (rev 1100) @@ -0,0 +1,12 @@ +package org.cishell.utilities.datastructure; + +public class ObjectContainer<T> { + public T object; + + public ObjectContainer() { + } + + public ObjectContainer(T object) { + this.object = object; + } +}; \ No newline at end of file Property changes on: trunk/core/org.cishell.utilities.datastructure/src/org/cishell/utilities/datastructure/ObjectContainer.java ___________________________________________________________________ Added: svn:mergeinfo + This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |