@@ -151,71 +151,87 @@ public PointerEvent(final DomNode domNode, final String type, final boolean shif
151151 }
152152
153153 /**
154- * @return the pointerId
154+ * Returns the pointer identifier.
155+ *
156+ * @return the pointer identifier
155157 */
156158 @ JsxGetter
157159 public long getPointerId () {
158160 return pointerId_ ;
159161 }
160162
161163 /**
162- * @return the width
164+ * Returns the pointer contact width.
165+ *
166+ * @return the pointer contact width
163167 */
164168 @ JsxGetter
165169 public long getWidth () {
166170 return width_ ;
167171 }
168172
169173 /**
170- * @return the height
174+ * Returns the pointer contact height.
175+ *
176+ * @return the pointer contact height
171177 */
172178 @ JsxGetter
173179 public long getHeight () {
174180 return height_ ;
175181 }
176182
177183 /**
178- * @return the pressure
184+ * Returns the normalized pointer pressure.
185+ *
186+ * @return the normalized pointer pressure
179187 */
180188 @ JsxGetter
181189 public double getPressure () {
182190 return pressure_ ;
183191 }
184192
185193 /**
186- * @return the tiltX
194+ * Returns the pointer tilt along the X axis.
195+ *
196+ * @return the pointer tilt along the X axis
187197 */
188198 @ JsxGetter
189199 public long getTiltX () {
190200 return tiltX_ ;
191201 }
192202
193203 /**
194- * @return the tiltY
204+ * Returns the pointer tilt along the Y axis.
205+ *
206+ * @return the pointer tilt along the Y axis
195207 */
196208 @ JsxGetter
197209 public long getTiltY () {
198210 return tiltY_ ;
199211 }
200212
201213 /**
202- * @return the pointerType
214+ * Returns the pointer type.
215+ *
216+ * @return the pointer type
203217 */
204218 @ JsxGetter
205219 public String getPointerType () {
206220 return pointerType_ ;
207221 }
208222
209223 /**
210- * @return the isPrimary
224+ * @return whether this is the primary pointer
211225 */
212226 @ JsxGetter (propertyName = "isPrimary" )
213227 public boolean isPrimary_js () {
214228 return isPrimary_ ;
215229 }
216230
217231 /**
218- * @return the pointerType
232+ * Returns the pointer altitude angle.
233+ *
234+ * @return the pointer altitude angle
219235 */
220236 @ JsxGetter
221237 @ SuppressWarnings ("PMD.UseUnderscoresInNumericLiterals" )
@@ -224,15 +240,19 @@ public double getAltitudeAngle() {
224240 }
225241
226242 /**
227- * @return the pointerType
243+ * Returns the pointer azimuth angle.
244+ *
245+ * @return the pointer azimuth angle
228246 */
229247 @ JsxGetter
230248 public double getAzimuthAngle () {
231249 return azimuthAngle_ ;
232250 }
233251
234252 /**
235- * @return the persistentDeviceId
253+ * Returns the persistent device identifier.
254+ *
255+ * @return the persistent device identifier
236256 */
237257 @ JsxGetter ({CHROME , EDGE , FF })
238258 public double getPersistentDeviceId () {
0 commit comments