Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for description (0.56 sec)

  1. pom.xml

    	<modelVersion>4.0.0</modelVersion>
    	<groupId>org.codelibs</groupId>
    	<artifactId>corelib</artifactId>
    	<packaging>jar</packaging>
    	<name>CodeLibs Core Library</name>
    	<version>0.6.0-SNAPSHOT</version>
    	<description />
    	<url>https://github.com/codelibs/corelib</url>
    	<inceptionYear>2012</inceptionYear>
    	<licenses>
    		<license>
    			<name>The Apache Software License, Version 2.0</name>
    XML
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:58:02 GMT 2024
    - 4.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/misc/AssertionUtil.java

            }
        }
    
        /**
         * 状態が不正でないことを表明します。
         *
         * @param expression
         *            事前条件
         * @param description
         *            不正な状態であることの説明
         * @throws ClIllegalStateException
         *             {@code expression}がfalseの場合。
         */
        public static void assertState(final boolean expression, final String description) {
            if (!expression) {
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 12.5K bytes
    - Viewed (0)
Back to top