Skip to content

Commit f535213

Browse files
committed
Replace garbled Unicode characters
RND-486
1 parent dc049f0 commit f535213

File tree

3 files changed

+14
-14
lines changed

3 files changed

+14
-14
lines changed

forms/src/main/java/com/itextpdf/forms/fields/PdfChoiceFormField.java

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ protected PdfChoiceFormField(PdfDictionary pdfObject) {
7676

7777
/**
7878
* Returns <code>Ch</code>, the form type for choice form fields.
79-
*
79+
*
8080
* @return the form type, as a {@link PdfName}
8181
*/
8282
@Override
@@ -86,7 +86,7 @@ public PdfName getFormType() {
8686

8787
/**
8888
* Sets the index of the first visible option in a scrollable list.
89-
*
89+
*
9090
* @param index the index of the first option
9191
* @return current {@link PdfChoiceFormField}
9292
*/
@@ -106,7 +106,7 @@ public PdfNumber getTopIndex() {
106106

107107
/**
108108
* Sets the selected items in the field.
109-
*
109+
*
110110
* @param indices a sorted array of indices representing selected items in the field
111111
* @return current {@link PdfChoiceFormField}
112112
*/
@@ -185,7 +185,7 @@ public PdfChoiceFormField setListSelected(int[] optionNumbers) {
185185

186186
/**
187187
* Gets the currently selected items in the field
188-
*
188+
*
189189
* @return a sorted array of indices representing the currently selected items in the field
190190
*/
191191
public PdfArray getIndices() {
@@ -203,7 +203,7 @@ public PdfChoiceFormField setCombo(boolean combo) {
203203

204204
/**
205205
* If true, the field is a combo box; if false, the field is a list box.
206-
*
206+
*
207207
* @return whether or not the field is now a combo box.
208208
*/
209209
public boolean isCombo() {
@@ -232,7 +232,7 @@ public boolean isEdit() {
232232
}
233233

234234
/**
235-
* If true, the field???s option items shall be sorted alphabetically.
235+
* If true, the field's option items shall be sorted alphabetically.
236236
* This flag is intended for use by writers, not by readers.
237237
* @param sort whether or not to sort the items
238238
* @return current {@link PdfChoiceFormField}
@@ -242,7 +242,7 @@ public PdfChoiceFormField setSort(boolean sort) {
242242
}
243243

244244
/**
245-
* If true, the field???s option items shall be sorted alphabetically.
245+
* If true, the field's option items shall be sorted alphabetically.
246246
* This flag is intended for use by writers, not by readers.
247247
* @return whether or not the items are currently sorted
248248
*/
@@ -251,7 +251,7 @@ public boolean isSort() {
251251
}
252252

253253
/**
254-
* If true, more than one of the field???s option items may be selected
254+
* If true, more than one of the field's option items may be selected
255255
* simultaneously; if false, at most one item shall be selected.
256256
* @param multiSelect whether or not to allow multiple selection
257257
* @return current {@link PdfChoiceFormField}
@@ -261,7 +261,7 @@ public PdfChoiceFormField setMultiSelect(boolean multiSelect) {
261261
}
262262

263263
/**
264-
* If true, more than one of the field???s option items may be selected simultaneously; if false, at most one item shall be selected.
264+
* If true, more than one of the field's option items may be selected simultaneously; if false, at most one item shall be selected.
265265
* @return whether or not multiple selection is currently allowed
266266
*/
267267
public boolean isMultiSelect() {

kernel/src/main/java/com/itextpdf/kernel/pdf/canvas/PdfCanvas.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -931,7 +931,7 @@ public PdfCanvas curveTo(double x1, double y1, double x2, double y2, double x3,
931931
}
932932

933933
/**
934-
* Appends a B??zier curve to the path, starting from the current point.
934+
* Appends a Bezier curve to the path, starting from the current point.
935935
*
936936
* @param x2 x coordinate of the second control point.
937937
* @param y2 y coordinate of the second control point.
@@ -953,7 +953,7 @@ public PdfCanvas curveTo(double x2, double y2, double x3, double y3) {
953953
}
954954

955955
/**
956-
* Appends a B??zier curve to the path, starting from the current point.
956+
* Appends a Bezier curve to the path, starting from the current point.
957957
*
958958
* @param x1 x coordinate of the first control point.
959959
* @param y1 y coordinate of the first control point.

layout/src/main/java/com/itextpdf/layout/ElementPropertyContainer.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ This file is part of the iText (R) project.
6969
/**
7070
* A generic abstract element that fits in a PDF layout object hierarchy.
7171
* A superclass of all {@link com.itextpdf.layout.element.IElement layout object} implementations.
72-
*
72+
*
7373
* @param <T> this type
7474
*/
7575
public abstract class ElementPropertyContainer<T extends IPropertyContainer> implements IPropertyContainer {
@@ -305,7 +305,7 @@ public T setTextAlignment(TextAlignment alignment) {
305305

306306
/**
307307
* Defines a custom spacing distance between all characters of a textual element.
308-
* The character-spacing parameter is added to the glyph???s horizontal or vertical displacement (depending on the writing mode).
308+
* The character-spacing parameter is added to the glyph's horizontal or vertical displacement (depending on the writing mode).
309309
*
310310
* @param charSpacing a floating point value
311311
* @return this Element.
@@ -349,7 +349,7 @@ public T setFontKerning(FontKerning fontKerning) {
349349
public T setBackgroundColor(Color backgroundColor) {
350350
return setBackgroundColor(backgroundColor, 1f);
351351
}
352-
352+
353353
/**
354354
* Specifies a background color for the Element.
355355
*

0 commit comments

Comments
 (0)