Пример #1
0
		public Operation(Computable left, Operator op, Computable right) {
			this.left = left;
			this.op = op;
			this.right = right;
		}
Пример #2
0
		public Negate(Computable computable) {
			this.computable = computable;
		}