Sha256: dc0470391f9e4dc1f4fb9f302e75def4b6b4b7a0ee1ea13f07b3decb3406f8f5

Contents?: true

Size: 381 Bytes

Versions: 7

Compression:

Stored size: 381 Bytes

Contents

schema Service {
	running is false
	procedure start {
		conditions {
			this.running is false
		}
		effects {
			this.running is true
		}
	}
	procedure stop {
		conditions {
			this.running is true
		}
		effects {
			this.running is false
		}
	}
}
schema Client {
	refer isref Service
	procedure redirect(s isref Service) {
		conditions { }
		effects {
			this.refer is s
		}
	}
}

Version data entries

7 entries across 7 versions & 2 rubygems

Version Path
sfplanner-0.2.4 test/test4.inc
sfplanner-0.2.3 test/test4.inc
sfplanner-0.2.1 test/test4.inc
sfplanner-0.1.5 test/test4.inc
sfp-0.2.1 test/test4.inc
sfp-0.2.0 test/test4.inc
sfp-0.1.3 test/test4.inc