001 /*
002 * ===========================================================================================
003 * = COPYRIGHT
004 *          PAX Computer Technology (Shenzhen) Co., Ltd. PROPRIETARY INFORMATION
005 *   This software is supplied under the terms of a license agreement or nondisclosure
006 *   agreement with PAX Computer Technology (Shenzhen) Co., Ltd. and may not be copied or
007 *   disclosed except in accordance with the terms in that agreement.
008 *     Copyright (C) 2017-2023 PAX Computer Technology (Shenzhen) Co., Ltd. All rights reserved.
009 * Description: // Detail description about the function of this module,
010 *             // interfaces with the other modules, and dependencies.
011 * Revision History:
012 * Date                         Author                        Action
013 * 2017/04/01                   PAX                     Create/Add/Modify/Delete
014 * ===========================================================================================
015 */
016 
017package com.pax.dal.entity;
018
019public class WLLcdCusorPosition {
020
021    private int pixel_x;
022    private int pixel_y;
023
024    /**
025     * <div class="zh">获取光标x坐标</div> <div class="en"> Gets the x-coordinate of the cursor </div>
026     *
027     */
028    public int getPixelX() {
029        return pixel_x;
030    }
031
032    /**
033     * <div class="zh">获取光标y坐标</div> <div class="en"> Gets the y-coordinate of the cursor </div>
034     *
035     */
036    public int getPixelY() {
037        return pixel_y;
038    }
039
040    /**
041     * <div class="zh">设置光标x坐标</div> <div class="en"> Sets the x-coordinate of the cursor </div>
042     *
043     */
044    public void setPixelX(int pixelX) {
045        this.pixel_x = pixelX;
046    }
047
048    /**
049     * <div class="zh">设置光标y坐标</div> <div class="en"> Sets the y-coordinate of the cursor </div>
050     *
051     */
052    public void setPixelY(int pixelY) {
053        this.pixel_y = pixelY;
054    }
055}