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
| import classes.Products; | |
| import javax.xml.XMLConstants; | |
| import javax.xml.bind.JAXBContext; | |
| import javax.xml.bind.util.JAXBSource; | |
| import javax.xml.transform.Source; | |
| import javax.xml.validation.Schema; | |
| import javax.xml.validation.SchemaFactory; | |
| import javax.xml.validation.Validator; | |
| import java.io.File; |
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
| .msg-low{ | |
| -fx-background-color: aquamarine; | |
| } | |
| .msg-mid{ | |
| -fx-background-color: gold; | |
| } | |
| .msg-high{ | |
| -fx-background-color: indianred; | |
| } |
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
| import com.vk.api.other.OtherCommon | |
| import com.vk.api.wall.Post | |
| import com.vk.api.wall.WallCommon | |
| import com.vk.worker.impl.VKWorkerGroup | |
| class WallTest { | |
| static main(args) { | |
| def tokens = [ | |
| 'TOKEN1', | |
| 'TOKEN2' |
NewerOlder