This file contains 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 nl.juraji.jackson.datatypes.fxcollections | |
import com.fasterxml.jackson.annotation.JsonFormat | |
import com.fasterxml.jackson.core.JsonParser | |
import com.fasterxml.jackson.core.JsonToken | |
import com.fasterxml.jackson.core.Version | |
import com.fasterxml.jackson.core.json.PackageVersion | |
import com.fasterxml.jackson.databind.* | |
import com.fasterxml.jackson.databind.deser.ContextualDeserializer | |
import com.fasterxml.jackson.databind.deser.ContextualKeyDeserializer |
This file contains 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 { Component, OnInit } from "@angular/core"; | |
@Component({ | |
selector: "app-query-parameter-binding-example", | |
template: "<p>Property 1: {{property1}}</p><p>Property 2: {{property2}}</p>" | |
}) | |
export class QueryParameterBindingExampleComponent implements OnInit { | |
/** | |
* When updated is reflected as query parameter "property-1=[value]" in url |
This file contains 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
-- | |
-- Created by IntelliJ IDEA. | |
-- User: Juraji | |
-- Date: 25-1-2018 | |
-- Time: 19:51 | |
-- | |
-- Binds to a text source and shows the current time in 24h format | |
-- appended with the current timezone designation. | |
-- The timezone designations for both dst and non-dst can be changed | |
-- by updating the dst_ variables below |