Last change
on this file since 50 was 1, checked in by Wouter Pasman, 6 years ago |
Initial import : Genius 9.0.0
|
File size:
320 bytes
|
Line | |
---|
1 | package agents.nastyagent;
|
---|
2 |
|
---|
3 | import genius.core.parties.NegotiationInfo;
|
---|
4 |
|
---|
5 | public class SleepInInit extends NastyAgent {
|
---|
6 |
|
---|
7 | @Override
|
---|
8 | public void init(NegotiationInfo info) {
|
---|
9 | super.init(info);
|
---|
10 | try {
|
---|
11 | Thread.sleep(2000000);// sleep 2000 seconds.
|
---|
12 | } catch (InterruptedException e) {
|
---|
13 | e.printStackTrace();
|
---|
14 | }
|
---|
15 | }
|
---|
16 |
|
---|
17 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.