com.jidesoft.swing.PartialSide Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jide-oss Show documentation
Show all versions of jide-oss Show documentation
JIDE Common Layer (Professional Swing Components)
package com.jidesoft.swing;
/**
*/
public interface PartialSide {
static final int NORTH = 1;
static final int SOUTH = 2;
static final int EAST = 4;
static final int WEST = 8;
static final int HORIZONTAL = NORTH | SOUTH;
static final int VERTICAL = EAST | WEST;
static final int ALL = VERTICAL | HORIZONTAL;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy