blob: e9d4156f12bf9582e16d8bbd45bddd7b473fc045 [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (c) 2018, 2020 Oracle and/or its affiliates. All rights reserved.
This program and the accompanying materials are made available under the
terms of the Eclipse Public License v. 2.0 which is available at
http://www.eclipse.org/legal/epl-2.0,
or the Eclipse Distribution License v. 1.0 which is available at
http://www.eclipse.org/org/documents/edl-v10.php.
SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause
-->
<ns:employee xmlns:ns="http://www.myns.com" employee-number = "1001">
<!-- This is a comment -->
<first-name>Matt</first-name>
<last-name>MacIvor</last-name>
<ns:address type="canadian-address">
<!-- Need one here -->
<street>2001 Odessy Drive</street>
<city>Ottawa</city>
<province>ON</province>
<postal-code>A1A 1A1</postal-code>
</ns:address>
<!-- Here is a comment for this node -->
<responsibility>Write Java Code</responsibility>
<responsibility>Write Design Spec</responsibility>
<phones>
<x:phone xmlns:x="http://www.myns.com">
<!-- This is another comment -->
<area-code>902</area-code>
<exchange>555</exchange>
<number>3226</number>
</x:phone>
<ns:phone>
<!--This is One More Comment -->
<area-code>613</area-code>
<exchange>555</exchange>
<number>1234</number>
</ns:phone>
</phones>
</ns:employee>