equal
deleted
inserted
replaced
1 /* |
1 /* |
2 * Copyright (c) 1998, 2013, Oracle and/or its affiliates. All rights reserved. |
2 * Copyright (c) 1998, 2018, Oracle and/or its affiliates. All rights reserved. |
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 * |
4 * |
5 * This code is free software; you can redistribute it and/or modify it |
5 * This code is free software; you can redistribute it and/or modify it |
6 * under the terms of the GNU General Public License version 2 only, as |
6 * under the terms of the GNU General Public License version 2 only, as |
7 * published by the Free Software Foundation. Oracle designates this |
7 * published by the Free Software Foundation. Oracle designates this |
60 nameNode.constrain(ctx); |
60 nameNode.constrain(ctx); |
61 super.constrain(ctx.subcontext(name)); |
61 super.constrain(ctx.subcontext(name)); |
62 } |
62 } |
63 |
63 |
64 void document(PrintWriter writer) { |
64 void document(PrintWriter writer) { |
65 writer.println("<h4><a name=" + name + ">" + name + |
65 writer.println("<h4 id=\"" + name + "\">" + name + |
66 " Command Set</a></h4>"); |
66 " Command Set</h4>"); |
67 for (Node node : components) { |
67 for (Node node : components) { |
68 node.document(writer); |
68 node.document(writer); |
69 } |
69 } |
70 } |
70 } |
71 |
71 |