Skip to content

Java:Example:GlobalSetting

전역으로 사용될 설정(Setting)변수를 관리한다.

Source code

package ---;

/**
 * 전역으로 사용될 설정(Setting)변수를 관리한다.
 * 
 * @author cwlee
 * @since 2013-08-08
 */
public class GlobalSetting {

    protected GlobalSetting() {
        throw new UnsupportedOperationException();
    }

    // -------
    // Values.
    // -------

    /** OpenGL을 사용한 카메라프리뷰(Preview)를 사용한다. */
    public static final boolean kOpenGLCameraPreview = true;
}

See also