This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| val metaData = MetaData.from(mapOf("username" to "hansklok")) | |
| val command = CreateProfileCommand("morlack", "Mitchell Herrijgers") | |
| commandGateway.sendAndWait<Any>(GenericCommandMessage(command, metaData)) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| private function getObjectInfoByType($objectType) | |
| { | |
| switch ($objectType) { | |
| case "FoodStand": | |
| return 'prices'; | |
| break; | |
| case "Toilet": | |
| return 'prices'; | |
| break; | |
| case "MarketStall": |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package org.insidion.test.jsoupexperiment; | |
| import org.jsoup.Jsoup; | |
| import org.jsoup.nodes.Document; | |
| import org.jsoup.nodes.Element; | |
| import org.jsoup.select.Elements; | |
| import java.io.IOException; | |
| import java.util.ArrayList; | |
| import java.util.Iterator; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="UTF-8"?> | |
| <form xmlns="http://www.intellij.com/uidesigner/form/" version="1" bind-to-class="MainUI"> | |
| <grid id="27dc6" binding="mainPanel" layout-manager="GridLayoutManager" row-count="6" column-count="4" same-size-horizontally="false" same-size-vertically="false" hgap="-1" vgap="-1"> | |
| <margin top="0" left="0" bottom="0" right="0"/> | |
| <constraints> | |
| <xy x="20" y="20" width="586" height="337"/> | |
| </constraints> | |
| <properties/> | |
| <border type="none"/> | |
| <children> |