This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8" ?> | |
<Scenario> | |
<repast.simphony.dataLoader.engine.ClassNameDataLoaderAction | |
context="Models" | |
file="../misc/common-scenario-files/repast.simphony.dataLoader.engine.MainCBuilder.xml" /> | |
</Scenario> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="ASCII"?> | |
<score:SContext xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:score="http://scoreabm.org/score" label="Models" ID="models" pluralLabel="Modelss" description=""> | |
<implementation package="gui.client.as.simple.plugin" className="MainCBuilder" basePath="E:\Programme\Eclipse Galileo (new Maven3)\eclipse\plugins" srcDir="" binDir="simphony.gui.client_1.2.0\bin"/> | |
<agents xsi:type="score:SContext" label="AgentContext" ID="agentContext" pluralLabel="AgentContexts"> | |
<implementation package="simple.agent" className="AgentContext" basePath="" srcDir="" binDir="simphony.agent_1.2.0\bin"/> | |
<agents label="Agent" ID="agent" pluralLabel="Agents"> | |
<implementation package="" className="Agent" basePath="" srcDir="" binDir=""/> | |
</agents> | |
</agents> | |
</score:SContext> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<classpath> | |
<classpathentry kind="src" path="src"/> | |
<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="REPAST_SIMPHONY_SUPPORT"/> | |
<classpathentry kind="output" path="bin"/> | |
</classpath> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
bin.includes = bin/,\ | |
plugin_jpf.xml,\ | |
META-INF/,\ | |
plugin.properties,\ | |
MessageCenter.log4j.properties | |
src.includes = src/ | |
jars.compile.order = |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Manifest-Version: 1.0 | |
Bundle-ManifestVersion: 2 | |
Bundle-Name: %pluginName | |
Bundle-SymbolicName: simphony.gui.client | |
Bundle-Version: 1.2.0 | |
Bundle-Localization: plugin | |
Require-Bundle: simphony.agent;bundle-version="1.2.0" | |
Bundle-Vendor: %providerName |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plugin PUBLIC "-//JPF//Java Plug-in Manifest 0.6" | |
"http://jpf.sourceforge.net/plugin_0_6.dtd"> | |
<plugin id="simphony.gui.client" version=""> | |
<attributes> | |
<attribute id="simphony" value="1.2.0" /> | |
</attributes> | |
<requires> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# <copyright> | |
# </copyright> | |
# | |
# $Id$ | |
# ==================================================================== | |
# To code developer: | |
# Do NOT change the properties between this line and the | |
# "%%% END OF TRANSLATED PROPERTIES %%%" line. | |
# Make a new property name, append to the end of the file and change |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#log4j.debug=true | |
log4j.rootLogger = TRACE | |
log4j.logger.repast = WARN | |
log4j.logger.org.java.plugin = WARN | |
log4j.logger.org.mule = WARN | |
log4j.logger.org.apache.commons = WARN | |
log4j.logger.repast.simphony.plugin = WARN |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8" standalone="no"?> | |
<launchConfiguration type="org.eclipse.jdt.launching.localJavaApplication"> | |
<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_PATHS"> | |
<listEntry value="/simphony.gui.client"/> | |
</listAttribute> | |
<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_TYPES"> | |
<listEntry value="4"/> | |
</listAttribute> | |
<listAttribute key="org.eclipse.jdt.launching.CLASSPATH"> | |
<listEntry value="<?xml version="1.0" encoding="UTF-8" standalone="no"?> <runtimeClasspathEntry containerPath="org.eclipse.jdt.launching.JRE_CONTAINER" path="2" type="4"/> "/> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package gui.client.as.simple.plugin; | |
import repast.simphony.context.Context; | |
import repast.simphony.dataLoader.ContextBuilder; | |
public class MainCBuilder implements ContextBuilder<Object> { | |
public Context<Object> build(Context<Object> context) { | |
return context; | |
} |