Skip to content

Commit db396fe

Browse files
committed
Update autoported files
cf313e7603fc7e749a4dba5d4cfd0ae04a280d92
1 parent 664e388 commit db396fe

File tree

14 files changed

+49
-49
lines changed

14 files changed

+49
-49
lines changed

itext/itext.kernel/itext/kernel/pdf/canvas/PdfCanvas.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -837,7 +837,7 @@ public virtual iText.Kernel.Pdf.Canvas.PdfCanvas LineTo(double x, double y) {
837837
return this;
838838
}
839839

840-
/// <summary>Appends a B&#xea;zier curve to the path, starting from the current point.</summary>
840+
/// <summary>Appends a B&amp;#xea;zier curve to the path, starting from the current point.</summary>
841841
/// <param name="x1">x coordinate of the first control point.</param>
842842
/// <param name="y1">y coordinate of the first control point.</param>
843843
/// <param name="x2">x coordinate of the second control point.</param>

itext/itext.kernel/itext/kernel/xmp/XMPMeta.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,12 +48,12 @@ public interface XMPMeta
4848
// Basic property manipulation functions
4949
/// <summary>
5050
/// The property value getter-methods all take a property specification: the first two parameters
51-
/// are always the top level namespace URI (the &quot;schema&quot; namespace) and the basic name
51+
/// are always the top level namespace URI (the &amp;quot;schema&amp;quot; namespace) and the basic name
5252
/// of the property being referenced.
5353
/// </summary>
5454
/// <remarks>
5555
/// The property value getter-methods all take a property specification: the first two parameters
56-
/// are always the top level namespace URI (the &quot;schema&quot; namespace) and the basic name
56+
/// are always the top level namespace URI (the &amp;quot;schema&amp;quot; namespace) and the basic name
5757
/// of the property being referenced. See the introductory discussion of path expression usage
5858
/// for more information.
5959
/// <para />

itext/itext.kernel/itext/kernel/xmp/XMPPathFactory.cs

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -52,22 +52,22 @@ namespace iText.Kernel.XMP {
5252
/// <para />
5353
/// <blockquote>
5454
/// <pre>
55-
/// String path = XMPPathFactory.composeStructFieldPath (schemaNS, &quot;Struct&quot;, fieldNS,
56-
/// &quot;Array&quot;);
57-
/// String path += XMPPathFactory.composeArrayItemPath (schemaNS, &quot;Array&quot; index);
55+
/// String path = XMPPathFactory.composeStructFieldPath (schemaNS, &amp;quot;Struct&amp;quot;, fieldNS,
56+
/// &amp;quot;Array&amp;quot;);
57+
/// String path += XMPPathFactory.composeArrayItemPath (schemaNS, &amp;quot;Array&amp;quot; index);
5858
/// PropertyInteger result = xmpObj.getPropertyAsInteger(schemaNS, path);
5959
/// </pre>
6060
/// </blockquote> You could also use this code if you want the string form of the integer:
6161
/// <blockquote>
6262
/// <pre>
63-
/// String path = XMPPathFactory.composeStructFieldPath (schemaNS, &quot;Struct&quot;, fieldNS,
64-
/// &quot;Array&quot;);
63+
/// String path = XMPPathFactory.composeStructFieldPath (schemaNS, &amp;quot;Struct&amp;quot;, fieldNS,
64+
/// &amp;quot;Array&amp;quot;);
6565
/// PropertyText xmpObj.getArrayItem (schemaNS, path, index);
6666
/// </pre>
6767
/// </blockquote>
6868
/// <para />
6969
/// <em>Note:</em> It might look confusing that the schemaNS is passed in all of the calls above.
70-
/// This is because the XMP toolkit keeps the top level &quot;schema&quot; namespace separate from
70+
/// This is because the XMP toolkit keeps the top level &amp;quot;schema&amp;quot; namespace separate from
7171
/// the rest of the path expression.
7272
/// <em>Note:</em> These methods are much simpler than in the C++-API, they don't check the given
7373
/// path or array indices.
@@ -90,8 +90,8 @@ private XMPPathFactory() {
9090
/// </param>
9191
/// <returns>
9292
/// Returns the composed path basing on fullPath. This will be of the form
93-
/// <tt>ns:arrayName[i]</tt>, where &quot;ns&quot; is the prefix for schemaNS and
94-
/// &quot;i&quot; is the decimal representation of itemIndex.
93+
/// <tt>ns:arrayName[i]</tt>, where &amp;quot;ns&amp;quot; is the prefix for schemaNS and
94+
/// &amp;quot;i&amp;quot; is the decimal representation of itemIndex.
9595
/// </returns>
9696
public static String ComposeArrayItemPath(String arrayName, int itemIndex) {
9797
if (itemIndex > 0) {
@@ -122,8 +122,8 @@ public static String ComposeArrayItemPath(String arrayName, int itemIndex) {
122122
/// </param>
123123
/// <returns>
124124
/// Returns the composed path. This will be of the form
125-
/// <tt>ns:structName/fNS:fieldName</tt>, where &quot;ns&quot; is the prefix for
126-
/// schemaNS and &quot;fNS&quot; is the prefix for fieldNS.
125+
/// <tt>ns:structName/fNS:fieldName</tt>, where &amp;quot;ns&amp;quot; is the prefix for
126+
/// schemaNS and &amp;quot;fNS&amp;quot; is the prefix for fieldNS.
127127
/// </returns>
128128
public static String ComposeStructFieldPath(String fieldNS, String fieldName) {
129129
AssertFieldNS(fieldNS);
@@ -146,8 +146,8 @@ public static String ComposeStructFieldPath(String fieldNS, String fieldName) {
146146
/// </param>
147147
/// <returns>
148148
/// Returns the composed path. This will be of the form
149-
/// <tt>ns:propName/?qNS:qualName</tt>, where &quot;ns&quot; is the prefix for
150-
/// schemaNS and &quot;qNS&quot; is the prefix for qualNS.
149+
/// <tt>ns:propName/?qNS:qualName</tt>, where &amp;quot;ns&amp;quot; is the prefix for
150+
/// schemaNS and &amp;quot;qNS&amp;quot; is the prefix for qualNS.
151151
/// </returns>
152152
public static String ComposeQualifierPath(String qualNS, String qualName) {
153153
AssertQualNS(qualNS);
@@ -162,7 +162,7 @@ public static String ComposeQualifierPath(String qualNS, String qualName) {
162162
/// <summary>Compose the path expression to select an alternate item by language.</summary>
163163
/// <remarks>
164164
/// Compose the path expression to select an alternate item by language. The
165-
/// path syntax allows two forms of &quot;content addressing&quot; that may
165+
/// path syntax allows two forms of &amp;quot;content addressing&amp;quot; that may
166166
/// be used to select an item in an array of alternatives. The form used in
167167
/// ComposeLangSelector lets you select an item in an alt-text array based on
168168
/// the value of its <tt>xml:lang</tt> qualifier. The other form of content
@@ -181,7 +181,7 @@ public static String ComposeQualifierPath(String qualNS, String qualName) {
181181
/// <returns>
182182
/// Returns the composed path. This will be of the form
183183
/// <tt>ns:arrayName[@xml:lang='langName']</tt>, where
184-
/// &quot;ns&quot; is the prefix for schemaNS.
184+
/// &amp;quot;ns&amp;quot; is the prefix for schemaNS.
185185
/// </returns>
186186
public static String ComposeLangSelector(String arrayName, String langName) {
187187
return arrayName + "[?xml:lang=\"" + iText.Kernel.XMP.Impl.Utils.NormalizeLangValue(langName) + "\"]";
@@ -190,7 +190,7 @@ public static String ComposeLangSelector(String arrayName, String langName) {
190190
/// <summary>Compose the path expression to select an alternate item by a field's value.</summary>
191191
/// <remarks>
192192
/// Compose the path expression to select an alternate item by a field's value. The path syntax
193-
/// allows two forms of &quot;content addressing&quot; that may be used to select an item in an
193+
/// allows two forms of &amp;quot;content addressing&amp;quot; that may be used to select an item in an
194194
/// array of alternatives. The form used in ComposeFieldSelector lets you select an item in an
195195
/// array of structs based on the value of one of the fields in the structs. The other form of
196196
/// content addressing is shown in ComposeLangSelector. For example, consider a simple struct
@@ -200,9 +200,9 @@ public static String ComposeLangSelector(String arrayName, String langName) {
200200
/// <para />
201201
/// <blockquote>
202202
/// <pre>
203-
/// String path = composeFieldSelector ( schemaNS, &quot;Downloads&quot;, fieldNS,
204-
/// &quot;City&quot;, chosenCity );
205-
/// XMPProperty prop = xmpObj.getStructField ( schemaNS, path, fieldNS, &quot;URI&quot; );
203+
/// String path = composeFieldSelector ( schemaNS, &amp;quot;Downloads&amp;quot;, fieldNS,
204+
/// &amp;quot;City&amp;quot;, chosenCity );
205+
/// XMPProperty prop = xmpObj.getStructField ( schemaNS, path, fieldNS, &amp;quot;URI&amp;quot; );
206206
/// </pre>
207207
/// </blockquote>
208208
/// </remarks>
@@ -222,8 +222,8 @@ public static String ComposeLangSelector(String arrayName, String langName) {
222222
/// <param name="fieldValue">The desired value of the field.</param>
223223
/// <returns>
224224
/// Returns the composed path. This will be of the form
225-
/// <tt>ns:arrayName[fNS:fieldName='fieldValue']</tt>, where &quot;ns&quot; is the
226-
/// prefix for schemaNS and &quot;fNS&quot; is the prefix for fieldNS.
225+
/// <tt>ns:arrayName[fNS:fieldName='fieldValue']</tt>, where &amp;quot;ns&amp;quot; is the
226+
/// prefix for schemaNS and &amp;quot;fNS&amp;quot; is the prefix for fieldNS.
227227
/// </returns>
228228
public static String ComposeFieldSelector(String arrayName, String fieldNS, String fieldName, String fieldValue
229229
) {

itext/itext.kernel/itext/kernel/xmp/XMPUtils.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,12 @@ private XMPUtils() {
3636
/// </param>
3737
/// <param name="separator">
3838
/// The string to be used to separate the items in the catenated
39-
/// string. Defaults to &quot;; &quot;, ASCII semicolon and space
39+
/// string. Defaults to &amp;quot;; &amp;quot;, ASCII semicolon and space
4040
/// (U+003B, U+0020).
4141
/// </param>
4242
/// <param name="quotes">
4343
/// The characters to be used as quotes around array items that
44-
/// contain a separator. Defaults to '&quot;'
44+
/// contain a separator. Defaults to '&amp;quot;'
4545
/// </param>
4646
/// <param name="allowCommas">Option flag to control the catenation.</param>
4747
/// <returns>Returns the string containing the catenated array items.</returns>
@@ -215,13 +215,13 @@ public static void AppendProperties(XMPMeta source, XMPMeta dest, bool doAllProp
215215
/// and
216216
/// <see cref="XMPConst.FALSESTR"/>
217217
/// </description></item>
218-
/// <item><description>&quot;t&quot; and &quot;f&quot;
218+
/// <item><description>&amp;quot;t&amp;quot; and &amp;quot;f&amp;quot;
219219
/// </description></item>
220-
/// <item><description>&quot;on&quot; and &quot;off&quot;
220+
/// <item><description>&amp;quot;on&amp;quot; and &amp;quot;off&amp;quot;
221221
/// </description></item>
222-
/// <item><description>&quot;yes&quot; and &quot;no&quot;
222+
/// <item><description>&amp;quot;yes&amp;quot; and &amp;quot;no&amp;quot;
223223
/// </description></item>
224-
/// <item><description>&quot;value &lt;&gt; 0&quot; and &quot;value == 0&quot;
224+
/// <item><description>&amp;quot;value &lt;&gt; 0&amp;quot; and &amp;quot;value == 0&amp;quot;
225225
/// </description></item>
226226
/// </list>
227227
/// </returns>

itext/itext.kernel/itext/kernel/xmp/impl/Utils.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -164,8 +164,8 @@ internal static String[] SplitNameAndValue(String selector) {
164164
/// <param name="schema">a schema namespace</param>
165165
/// <param name="prop">an XMP Property</param>
166166
/// <returns>
167-
/// Returns true if the property is defined as &quot;Internal
168-
/// Property&quot;, see XMP Specification.
167+
/// Returns true if the property is defined as &amp;quot;Internal
168+
/// Property&amp;quot;, see XMP Specification.
169169
/// </returns>
170170
internal static bool IsInternalProperty(String schema, String prop) {
171171
bool isInternal = false;

itext/itext.kernel/itext/kernel/xmp/impl/xpath/XMPPathParser.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,15 +66,15 @@ private XMPPathParser() {
6666
/// </term>
6767
/// <description> The last element of an array.
6868
/// </description></item>
69-
/// <item><term>[fieldName=&quot;value&quot;]
69+
/// <item><term>[fieldName=&amp;quot;value&amp;quot;]
7070
/// </term>
7171
/// <description> An element in an array of structs, chosen by a field value.
7272
/// </description></item>
73-
/// <item><term>[@xml:lang=&quot;value&quot;]
73+
/// <item><term>[@xml:lang=&amp;quot;value&amp;quot;]
7474
/// </term>
7575
/// <description> An element in an alt-text array, chosen by the xml:lang qualifier.
7676
/// </description></item>
77-
/// <item><term>[?qualName=&quot;value&quot;]
77+
/// <item><term>[?qualName=&amp;quot;value&amp;quot;]
7878
/// </term>
7979
/// <description> An element in an array, chosen by a qualifier value.
8080
/// </description></item>

itext/itext.kernel/itext/kernel/xmp/options/Options.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ public override int GetHashCode() {
123123
/// </remarks>
124124
/// <returns>
125125
/// Returns a String listing all options that are set to <c>true</c> by their name,
126-
/// like &quot;option1 | option4&quot;.
126+
/// like &amp;quot;option1 | option4&amp;quot;.
127127
/// </returns>
128128
public virtual String GetOptionsString() {
129129
if (options != 0) {

itext/itext.kernel/itext/kernel/xmp/options/ParseOptions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ namespace iText.Kernel.XMP.Options {
3636
/// </summary>
3737
/// <since>24.01.2006</since>
3838
public sealed class ParseOptions : iText.Kernel.XMP.Options.Options {
39-
/// <summary>Require a surrounding &quot;x:xmpmeta&quot; element in the xml-document.</summary>
39+
/// <summary>Require a surrounding &amp;quot;x:xmpmeta&amp;quot; element in the xml-document.</summary>
4040
public const int REQUIRE_XMP_META = 0x0001;
4141

4242
/// <summary>Do not reconcile alias differences, throw an exception instead.</summary>

itext/itext.kernel/itext/kernel/xmp/options/SerializeOptions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ public sealed class SerializeOptions : iText.Kernel.XMP.Options.Options {
5050
/// Use a compact form of RDF.
5151
/// The compact form is the default serialization format (this flag is technically ignored).
5252
/// To serialize to the canonical form, set the flag USE_CANONICAL_FORMAT.
53-
/// If both flags &quot;compact&quot; and &quot;canonical&quot; are set, canonical is used.
53+
/// If both flags &amp;quot;compact&amp;quot; and &amp;quot;canonical&amp;quot; are set, canonical is used.
5454
/// </remarks>
5555
public const int USE_COMPACT_FORMAT = 0x0040;
5656

itext/itext.styledxmlparser/itext/styledxmlparser/jsoup/nodes/Document.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -628,7 +628,7 @@ public virtual int IndentAmount() {
628628
/// <summary>Set the indent amount for pretty printing</summary>
629629
/// <param name="indentAmount">
630630
/// number of spaces to use for indenting each level. Must be
631-
/// <literal>&gt;=</literal>
631+
/// <c>&gt;=</c>
632632
/// 0.
633633
/// </param>
634634
/// <returns>this, for chaining</returns>

0 commit comments

Comments
 (0)