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"?> | |
<projectDescription> | |
<name>simphony.gui.client</name> | |
<buildSpec> | |
<buildCommand> | |
<name>repast.simphony.score.agents.repast_simphony_builder</name> | |
</buildCommand> | |
<buildCommand> | |
<name>org.eclipse.jdt.core.javabuilder</name> | |
</buildCommand> |
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.agent | |
Bundle-Version: 1.2.0 | |
Bundle-Localization: plugin | |
Bundle-Vendor: %providerName | |
Export-Package: simple.agent, | |
simple.extra | |
Require-Bundle: repast.simphony.data;bundle-version="1.2.0" |
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.agent" 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
package simple.agent; | |
import static org.apache.log4j.Logger.getLogger; | |
import org.apache.log4j.Logger; | |
import repast.simphony.engine.schedule.ScheduledMethod; | |
import simple.extra.RepastUtils; | |
public class Agent { |
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 simple.agent; | |
import static org.apache.log4j.Logger.getLogger; | |
import org.apache.log4j.Logger; | |
import repast.simphony.context.DefaultContext; | |
public class AgentContext extends DefaultContext<Agent> { |
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 simple.extra; | |
import static org.apache.log4j.Logger.getLogger; | |
import org.apache.log4j.Logger; | |
import repast.simphony.engine.environment.RunEnvironment; | |
import repast.simphony.engine.environment.RunState; | |
import repast.simphony.engine.environment.ScheduleRegistry; | |
import repast.simphony.engine.schedule.ISchedule; |
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"?> | |
<projectDescription> | |
<name>simphony.agent</name> | |
<buildSpec> | |
<buildCommand> | |
<name>repast.simphony.score.agents.repast_simphony_builder</name> | |
</buildCommand> | |
<buildCommand> | |
<name>org.eclipse.jdt.core.javabuilder</name> | |
</buildCommand> |
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="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/> | |
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/> | |
<classpathentry kind="src" path="src"/> | |
<classpathentry kind="con" path="REPAST_SIMPHONY_SUPPORT"/> | |
<classpathentry kind="output" path="bin"/> | |
</classpath> |