mirror of
https://github.com/openjdk/jdk.git
synced 2026-02-05 07:58:40 +00:00
115 lines
3.1 KiB
XML
115 lines
3.1 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!--
|
|
Copyright (c) 2022, Oracle and/or its affiliates. All rights reserved.
|
|
DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
|
|
This code is free software; you can redistribute it and/or modify it
|
|
under the terms of the GNU General Public License version 2 only, as
|
|
published by the Free Software Foundation. Oracle designates this
|
|
particular file as subject to the "Classpath" exception as provided
|
|
by Oracle in the LICENSE file that accompanied this code.
|
|
|
|
This code is distributed in the hope that it will be useful, but WITHOUT
|
|
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
version 2 for more details (a copy is included in the LICENSE file that
|
|
accompanied this code).
|
|
|
|
You should have received a copy of the GNU General Public License version
|
|
2 along with this work; if not, write to the Free Software Foundation,
|
|
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
|
or visit www.oracle.com if you need additional information or have any
|
|
questions.
|
|
-->
|
|
|
|
<svg version="1.1"
|
|
width="370" height="145"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
<style><![CDATA[
|
|
text {
|
|
font: 30px 'DejaVu Sans', Verdana, Arial, sans-serif;
|
|
fill: #d91c1b;
|
|
}
|
|
text.centered {
|
|
text-anchor: middle;
|
|
dominant-baseline: middle;
|
|
}
|
|
]]></style>
|
|
<circle
|
|
id="circleA"
|
|
cx="40"
|
|
cy="90"
|
|
r="30"
|
|
fill="#e6e6ff"
|
|
stroke="#000000"
|
|
stroke-width="1"
|
|
/>
|
|
<text
|
|
x="40"
|
|
y="90"
|
|
class="centered"
|
|
>A</text>
|
|
<use
|
|
x="130"
|
|
y="0"
|
|
xlink:href="#circleA"
|
|
/>
|
|
<text
|
|
x="170"
|
|
y="90"
|
|
class="centered"
|
|
>B</text>
|
|
<use
|
|
x="260"
|
|
y="0"
|
|
xlink:href="#circleA"
|
|
/>
|
|
<text
|
|
x="300"
|
|
y="90"
|
|
class="centered"
|
|
>C</text>
|
|
<rect
|
|
x="105"
|
|
y="40"
|
|
width="260"
|
|
height="100"
|
|
fill="none"
|
|
stroke="#d91c1b"
|
|
stroke-width="5"
|
|
stroke-dasharray="25 10"
|
|
/>
|
|
<text
|
|
x="101"
|
|
y="30"
|
|
style="font-weight: bold"
|
|
>R</text>
|
|
<defs>
|
|
<marker
|
|
id="arrow"
|
|
viewBox="0 0 10 10"
|
|
refX="10"
|
|
refY="5"
|
|
markerWidth="10"
|
|
markerHeight="10"
|
|
orient="auto">
|
|
<path
|
|
d="M 0 0 L 10 5 L 0 10"
|
|
fill="none"
|
|
stroke="#000000"
|
|
/>
|
|
</marker>
|
|
</defs>
|
|
<path d="M 40 55 Q 105 40 170 55"
|
|
stroke="#000000"
|
|
fill="none"
|
|
stroke-dasharray="3"
|
|
stroke-width="1"
|
|
marker-end="url(#arrow)"
|
|
/>
|
|
</svg>
|