using System.Collections.Generic; namespace xAPI.Registry { /// /// Provides 7 items of the xAPI_Activities of the context uhfReader as public properties. /// public sealed class xAPI_Activities_UhfReader : xAPI_Activities { /// /// A field which can be click to fire an action. For example the 'start button'. /// URI: https://xapi.elearn.rwth-aachen.de/definitions/uhfReader/activities/button /// public readonly xAPI_Activity button = new xAPI_Activity( context: "uhfReader", key: "button", names: new Dictionary { ["en-US"] = "button" }, descriptions: new Dictionary { ["en-US"] = "A field which can be click to fire an action. For example the 'start button'." }); /// /// A box which can be checked or unchecked. For example in this case Read TID should be selected. /// URI: https://xapi.elearn.rwth-aachen.de/definitions/uhfReader/activities/checkbox /// public readonly xAPI_Activity checkbox = new xAPI_Activity( context: "uhfReader", key: "checkbox", names: new Dictionary { ["en-US"] = "checkbox" }, descriptions: new Dictionary { ["en-US"] = "A box which can be checked or unchecked. For example in this case Read TID should be selected." }); /// /// A progress to identify /// URI: https://xapi.elearn.rwth-aachen.de/definitions/uhfReader/activities/identification /// public readonly xAPI_Activity identification = new xAPI_Activity( context: "uhfReader", key: "identification", names: new Dictionary { ["en-US"] = "identification" }, descriptions: new Dictionary { ["en-US"] = "A progress to identify " }); /// /// A mouse used to click on buttons in the software. /// URI: https://xapi.elearn.rwth-aachen.de/definitions/uhfReader/activities/mouse /// public readonly xAPI_Activity mouse = new xAPI_Activity( context: "uhfReader", key: "mouse", names: new Dictionary { ["en-US"] = "mouse" }, descriptions: new Dictionary { ["en-US"] = "A mouse used to click on buttons in the software." }); /// /// A image of the reader is generated which is interactible. The reading head is selected in the image. /// URI: https://xapi.elearn.rwth-aachen.de/definitions/uhfReader/activities/readerImage /// public readonly xAPI_Activity readerImage = new xAPI_Activity( context: "uhfReader", key: "readerImage", names: new Dictionary { ["en-US"] = "reader image" }, descriptions: new Dictionary { ["en-US"] = "A image of the reader is generated which is interactible. The reading head is selected in the image." }); /// /// Represent the RFID tag. You can drag it as per your requirements /// URI: https://xapi.elearn.rwth-aachen.de/definitions/uhfReader/activities/rfidTag /// public readonly xAPI_Activity rfidTag = new xAPI_Activity( context: "uhfReader", key: "rfidTag", names: new Dictionary { ["en-US"] = "rfidTag" }, descriptions: new Dictionary { ["en-US"] = "Represent the RFID tag. You can drag it as per your requirements" }); /// /// Represents the transpnder to the physical reader. /// URI: https://xapi.elearn.rwth-aachen.de/definitions/uhfReader/activities/transponder /// public readonly xAPI_Activity transponder = new xAPI_Activity( context: "uhfReader", key: "transponder", names: new Dictionary { ["en-US"] = "transponder" }, descriptions: new Dictionary { ["en-US"] = "Represents the transpnder to the physical reader." }); public xAPI_Activities_UhfReader() : base("uhfReader") { } } }