onerowscale.java

来自「Rapla是一个灵活的多用户资源管理系统。它提供的一些功能有:日历GUI」· Java 代码 · 共 39 行

JAVA
39
字号
package org.rapla.components.calendarview.swing.scaling;



public class OneRowScale implements IRowScaleSmall
{

    public int getYCoordForRow( int row )
    {
        return 0;
    }

    public int getSizeInPixelBetween( int startRow, int endRow )
    {
        return 0;
    }

    public int getRowSizeForRow( int row )
    {
        return 15;
    }

    public int calcRow( int y )
    {
        return 0;
    }

    public int trim( int y )
    {
        return 0;
    }

    public int getDraggingCorrection( int y)
    {
       return 15 / 2;
    }

}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?