Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 169 for ziga (0.15 sec)

  1. src/test/java/org/codelibs/core/beans/util/MyBean.java

     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.core.beans.util;
    
    /**
     * @author higa
     */
    public class MyBean {
    
        /**
         *
         */
        public String aaa;
    
        /**
         *
         */
        public String bbb;
    
    Java
    - Registered: Fri Apr 26 20:58:09 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 803 bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/core/beans/util/MyBean3.java

     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.core.beans.util;
    
    /**
     * @author higa
     */
    public class MyBean3 {
    
        /**
         *
         */
        public String abc_value = "abc";
    
        /**
         *
         */
        public String xyz_value = "xyz";
    
        /**
         *
         */
    Java
    - Registered: Fri Apr 26 20:58:09 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 1011 bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/exception/SAXRuntimeException.java

    import static org.codelibs.core.collection.ArrayUtil.asArray;
    
    import org.xml.sax.SAXException;
    import org.xml.sax.SAXParseException;
    
    /**
     * {@link SAXException}をラップする例外です。
     *
     * @author higa
     */
    public class SAXRuntimeException extends ClRuntimeException {
    
        private static final long serialVersionUID = -4933312103385038765L;
    
        /**
         * {@link SAXRuntimeException}を作成します。
         *
    Java
    - Registered: Fri Apr 26 20:58:09 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 2.1K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/exception/IORuntimeException.java

     */
    package org.codelibs.core.exception;
    
    import static org.codelibs.core.collection.ArrayUtil.asArray;
    
    import java.io.IOException;
    
    /**
     * {@link IOException}をラップする例外です。
     *
     * @author higa
     */
    public class IORuntimeException extends ClRuntimeException {
    
        private static final long serialVersionUID = 1533554330702215389L;
    
        /**
         * {@link IORuntimeException}を作成します。
         *
    Java
    - Registered: Fri Apr 26 20:58:09 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 1.2K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/exception/ParserConfigurationRuntimeException.java

    import static org.codelibs.core.collection.ArrayUtil.asArray;
    
    import javax.xml.parsers.ParserConfigurationException;
    
    /**
     * {@link ParserConfigurationException}をラップする例外です。
     *
     * @author higa
     */
    public class ParserConfigurationRuntimeException extends ClRuntimeException {
    
        private static final long serialVersionUID = -4610465906028959083L;
    
        /**
    Java
    - Registered: Fri Apr 26 20:58:09 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 1.3K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/core/net/UuidUtilTest.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.core.net;
    
    import junit.framework.TestCase;
    
    /**
     * @author higa
     *
     */
    public class UuidUtilTest extends TestCase {
    
        /**
         * Test method for {@link org.codelibs.core.net.UuidUtil#create()}.
         */
        public void testCreate() {
    Java
    - Registered: Fri Apr 26 20:58:09 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 1.1K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/core/collection/IteratorEnumeration.java

    import static org.codelibs.core.misc.AssertionUtil.assertArgumentNotNull;
    
    import java.util.Enumeration;
    import java.util.Iterator;
    
    /**
     * {@link Iterator}を {@link Enumeration}にするためのアダブタです。
     *
     * @author higa
     * @param <T>
     *            列挙する要素の型
     */
    public class IteratorEnumeration<T> implements Enumeration<T> {
    
        /** 反復子 */
        protected final Iterator<T> iterator;
    
        /**
    Java
    - Registered: Fri Apr 26 20:58:09 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 1.9K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/core/lang/Hoge.java

    package org.codelibs.core.lang;
    
    import java.lang.annotation.ElementType;
    import java.lang.annotation.Retention;
    import java.lang.annotation.RetentionPolicy;
    import java.lang.annotation.Target;
    
    /**
     * @author higa
     *
     */
    @Retention(RetentionPolicy.RUNTIME)
    @Target({ ElementType.TYPE, ElementType.METHOD })
    public @interface Hoge {
    
        /**
         *
         */
        String aaa() default "123";
    
        /**
         *
    Java
    - Registered: Fri Apr 26 20:58:09 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 1.1K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/core/exception/NamingRuntimeException.java

     */
    package org.codelibs.core.exception;
    
    import static org.codelibs.core.collection.ArrayUtil.asArray;
    
    import javax.naming.NamingException;
    
    /**
     * {@link NamingException}をラップする例外です。
     *
     * @author higa
     */
    public class NamingRuntimeException extends ClRuntimeException {
    
        private static final long serialVersionUID = -3176447530746274091L;
    
        /**
         * {@link NamingRuntimeException}を作成します。
         *
    Java
    - Registered: Fri Apr 26 20:58:09 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 1.2K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/core/convert/IntegerConversionUtilTest.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.core.convert;
    
    import junit.framework.TestCase;
    
    /**
     * @author higa
     *
     */
    public class IntegerConversionUtilTest extends TestCase {
    
        /**
         * @throws Exception
         */
        public void testToInteger() throws Exception {
    Java
    - Registered: Fri Apr 26 20:58:09 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 1.5K bytes
    - Viewed (0)
Back to top