]> git.argeo.org Git - gpl/argeo-slc.git/blobdiff - runtime/org.argeo.slc.specs/src/main/java/org/argeo/slc/test/context/ContextAware.java
Working command line SLC
[gpl/argeo-slc.git] / runtime / org.argeo.slc.specs / src / main / java / org / argeo / slc / test / context / ContextAware.java
index 225cd825f08c96a2cc3c6b4eb9cbaf7c452a81ef..cd9897e117d915299678ee376c863050556f4b53 100644 (file)
@@ -1,15 +1,34 @@
+/*\r
+ * Copyright (C) 2007-2012 Argeo GmbH\r
+ *\r
+ * Licensed under the Apache License, Version 2.0 (the "License");\r
+ * you may not use this file except in compliance with the License.\r
+ * You may obtain a copy of the License at\r
+ *\r
+ *         http://www.apache.org/licenses/LICENSE-2.0\r
+ *\r
+ * Unless required by applicable law or agreed to in writing, software\r
+ * distributed under the License is distributed on an "AS IS" BASIS,\r
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
+ * See the License for the specific language governing permissions and\r
+ * limitations under the License.\r
+ */\r
 package org.argeo.slc.test.context;\r
 \r
 import java.util.Map;\r
 \r
+/** Access to an SLC test context that is, maps of reached and expected values. */\r
 public interface ContextAware {\r
        public final static String DEFAULT_SKIP_FLAG = "!";\r
        public final static String DEFAULT_ANY_FLAG = "*";\r
 \r
+       /** Retrieves reached values. */\r
        public Map<String, Object> getValues();\r
 \r
+       /** Set reached values. */\r
        public void setValues(Map<String, Object> values);\r
 \r
+       /** Retrieves expected values. */\r
        public Map<String, Object> getExpectedValues();\r
 \r
        public String getContextSkipFlag();\r