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

com.jidesoft.swing.PartialSide Maven / Gradle / Ivy

There is a newer version: 3.6.18
Show newest version
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