From 6eb340b5f8c03c6936afd2a82209e466c70ba4aa Mon Sep 17 00:00:00 2001 From: Arne Nordmann Date: Mon, 17 Feb 2014 16:45:14 +0100 Subject: [PATCH 392/392] Adds AMARSi AdaptiveComponentStatus proto * Creates folder for (yet) AMARSi-specific types * Status of an AMARSi AdaptiveComponent, see https://redmine.amarsi-project.eu/projects/libamarsi/ --- .../rst/amarsi/AdaptiveComponentStatus.proto | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 proto/sandbox/rst/amarsi/AdaptiveComponentStatus.proto diff --git a/proto/sandbox/rst/amarsi/AdaptiveComponentStatus.proto b/proto/sandbox/rst/amarsi/AdaptiveComponentStatus.proto new file mode 100644 index 0000000..48fcb63 --- /dev/null +++ b/proto/sandbox/rst/amarsi/AdaptiveComponentStatus.proto @@ -0,0 +1,19 @@ +package rst.amarsi; + +option java_outer_classname = "AdaptiveComponentType"; + +/** + * Holds the status of an AMARSi Adaptive Component, namely: + * - Converged + * - Not Converged + * + * @author Arne Nordmann + */ +message AdaptiveComponentStatus { + + /** + * Converged - true or false + */ + required bool converged = 1; + +} -- 1.7.9.5