All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.katalon.platform.ui.viewer.DefaultCellLayoutInfo Maven / Gradle / Ivy

There is a newer version: 1.0.5
Show newest version
package com.katalon.platform.ui.viewer;

import org.eclipse.core.runtime.Platform;

public class DefaultCellLayoutInfo implements CellLayoutInfo {

    @Override
    public int getLeftMargin() {
        return Platform.OS_WIN32.equals(Platform.getOS()) ? 0 : 2;
    }

    @Override
    public int getRightMargin() {
        return 0;
    }

    @Override
    public int getSpace() {
        return 5;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy