01: package org.jicengine.operation;
02:
03: /**
04: *
05: * <p>
06: * Copyright (C) 2004 Timo Laitinen
07: * </p>
08: * @author Timo Laitinen
09: * @created 2004-09-20
10: * @since JICE-0.10
11: *
12: */
13:
14: public abstract class ParameterlessOperation implements Operation {
15:
16: public boolean needsParameters() {
17: return false;
18: }
19:
20: public boolean needsParameter(String name) {
21: return false;
22: }
23:
24: }
|